/// <summary> /// Copy from other instance /// </summary> /// <param name="other">Instance to copy from</param> protected StyleTransferEffectConfigToken(StyleTransferEffectConfigToken other) : base(other) { Contract.Requires(other != null); Properties = other.Properties; }
/// <summary> /// Initialise with defaults /// </summary> public StyleTransferEffectConfigToken() : base() { Properties = new StyleTransferEffectProperties(); }