10 lines
177 B

2 years ago
namespace SBF.Model.Dto
{
public class CreateTrusteeshipRequest
{
public long ShopId { get; set; }
public List<string> SkuList { get; set; }
}
}