using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Entity { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class PosRegister { [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } [JsonProperty(PropertyName = "storeNo")] public string StoreNo { get; set; } [JsonProperty(PropertyName = "storeName")] public string StoreName { get; set; } [JsonProperty(PropertyName = "posNo")] public string PosNo { get; set; } [JsonProperty(PropertyName = "posId")] public string PosId { get; set; } } }