Files
T-DAS/Epost.Model/ShopIdModel.cs
2023-01-13 15:30:20 +08:00

31 lines
769 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class ShopIdModel
{
public int idd { get; set; }
public string ID { get; set; }
public string name { get; set; }
public string location { get; set; }
public string orderway { get; set; }
public string prino { get; set; }
public ShopIdModel()
{
}
public ShopIdModel(string ID, string name, string location, string orderway, string prino)
{
this.ID = ID;
this.name = name;
this.location = location;
this.orderway = orderway;
this.prino = prino;
}
}
}