Пример #1
0
 public virtual void SetCollection <T>(List <T> a)
 {
     _value       = a;
     PropertyType = vxSandboxEntityPropertyType.Collection;
 }
Пример #2
0
 public vxSandboxEntityProperty(string Name, int Value) : this(Name)
 {
     _value       = Value;
     PropertyType = vxSandboxEntityPropertyType.Integer;
 }
Пример #3
0
 public vxSandboxEntityProperty(string Name, float Value) : this(Name)
 {
     _value       = Value;
     PropertyType = vxSandboxEntityPropertyType.Float;
 }
Пример #4
0
 public vxSandboxEntityProperty(string Name, string Value) : this(Name)
 {
     _value       = Value;
     PropertyType = vxSandboxEntityPropertyType.String;
 }