4 changed files with 42 additions and 11 deletions
@ -0,0 +1,14 @@ |
|||
using System.ComponentModel.DataAnnotations; |
|||
|
|||
namespace BBWYB.Server.Model.Dto |
|||
{ |
|||
public class QueryPurchaseAccountRequest |
|||
{ |
|||
[Required] |
|||
public long ShopId { get; set; } |
|||
|
|||
public Enums.Platform? PurchasePlatofrmId { get; set; } |
|||
|
|||
public string AccountName { get; set;} |
|||
} |
|||
} |
Loading…
Reference in new issue