15 lines
350 B
C#
15 lines
350 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)]
|
|
public long? Id { get; set; }
|
|
}
|
|
} |