Files
raven/server/AyaNova/biz/AyaFieldData.cs
2020-01-20 19:43:13 +00:00

15 lines
431 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; }
}
}