namespace HStation.Dto { /// /// /// public class AssetsPackagePropContentDto { /// /// /// public AssetsPackagePropContentDto() { } /// /// /// public AssetsPackagePropContentDto(Model.AssetsPackagePropContent rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.PartID = rhs.PartID; this.PropID = rhs.PropID; this.PropValue = rhs.PropValue; } /// /// ID /// public long ID { get; set; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 产品ID /// public long PartID { get; set; } /// /// 属性ID /// public long PropID { get; set; } /// /// 属性值 /// public string PropValue { get; set; } } }