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