You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
709 B
C#

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; }
}
}