namespace HStation.Dto { /// /// /// public class AddAssetsPackagePropContentInput { /// /// 系列ID /// [Required, Range(1, long.MaxValue, ErrorMessage = "SeriesID 必须大于0")] public long SeriesID { get; set; } /// /// 产品ID /// [Required, Range(1, long.MaxValue, ErrorMessage = "PartID 必须大于0")] public long PartID { get; set; } /// /// 属性ID /// [Required, Range(1, long.MaxValue, ErrorMessage = "PropID 必须大于0")] public long PropID { get; set; } /// /// 属性值 /// public string PropValue { get; set; } } }