Files
raven/server/AyaNova/biz/AyaFieldData.cs
2020-04-02 20:16:28 +00:00

17 lines
623 B
C#

using System.Linq;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using System.Text;
using Newtonsoft.Json;
namespace AyaNova.Biz
{
public class AyaFieldData
{
public object v { get; set; }
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)] //https://www.newtonsoft.com/json/help/html/JsonPropertyPropertyLevelSetting.htm
public long? i { get; set; }
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)] //https://www.newtonsoft.com/json/help/html/JsonPropertyPropertyLevelSetting.htm
public bool? rid { get; set; }
}
}