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