步步为盈

14 lines
267 B

using System.Collections.Generic;
namespace BBWY.Client.Models
{
public class OrderBelongShopResponse
{
public long ShopId { get; set; }
public string ShopName { get; set; }
public IList<string> OrderIdList { get; set; }
}
}