using IStation.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 设备变更记录拓展附件数量
///
public class ProductModifyRecordContentExFileCountOutput:ProductModifyRecordContentDto
{
///
///
///
public ProductModifyRecordContentExFileCountOutput() { }
///
///
///
public ProductModifyRecordContentExFileCountOutput(Model.ProductModifyRecord rhs):base(rhs)
{
}
///
///
///
public ProductModifyRecordContentExFileCountOutput(Model.ProductModifyRecord rhs, int fileCount) : base(rhs)
{
this.FileCount = fileCount;
}
///
/// 附件数量
///
public int FileCount { get; set; }
}
}