using System.Collections.Generic; namespace BBWY.Server.Model.Dto { public class OrderBelongShopResponse { public long ShopId { get; set; } public string ShopName { get; set; } public IList OrderIdList { get; set; } } }