添加项目文件。
This commit is contained in:
30
Epost.Model/ShopIdModel.cs
Normal file
30
Epost.Model/ShopIdModel.cs
Normal file
@ -0,0 +1,30 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user