using System; using HRM.BO; namespace HRM.UI.MODELS { public class FileTModel : AuditTrailBase { public FileTModel() { FileName = string.Empty; } public string FileName { get; set; } public EnumFileType Type { get; set; } public byte[] FileInBytes { get; set; } public int Count { get; set; } } }