This commit is contained in:
2020-12-18 19:31:24 +00:00
parent 4e51e45e95
commit ddee772f08
8 changed files with 32 additions and 11 deletions

View File

@@ -13,5 +13,7 @@ namespace AyaNova.Biz
public long? i { get; set; }
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)] //https://www.newtonsoft.com/json/help/html/JsonPropertyPropertyLevelSetting.htm
public bool? rid { get; set; }
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)] //https://www.newtonsoft.com/json/help/html/JsonPropertyPropertyLevelSetting.htm
public int? ot { get; set; }
}
}

View File

@@ -22,6 +22,6 @@ namespace AyaNova.Biz
MemorySize = 14,//this is so client can convert what would normally be an Integer type to human readable file / ram size value
TimeSpan=15,
PhoneNumber=16,//this is so client can dial directly,
Roles = 17//for grid display (users)
Roles = 17//for grid display (users),
}
}