Esempio n. 1
0
 /// <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;
 }
Esempio n. 2
0
 /// <summary>
 /// Initialise with defaults
 /// </summary>
 public StyleTransferEffectConfigToken() : base()
 {
     Properties = new StyleTransferEffectProperties();
 }