/// <summary>
 ///     Initializes a new instance of the <see cref="AccountPropertyModification&lt;T&gt;" /> class.
 /// </summary>
 /// <param name="type">The property modification type</param>
 /// <param name="value"></param>
 public AccountPropertyModification(PropertyModificationType type, T value)
 {
     Type  = type;
     Value = value;
 }
Esempio n. 2
0
 /// <summary>
 ///     Get value in byte
 /// </summary>
 /// <param name="type"></param>
 /// <returns></returns>
 public static byte GetValueInByte(this PropertyModificationType type)
 {
     return((byte)type);
 }