using System; namespace DeviceRepair.Models { [Serializable] public class AttachmentSubmitModel { public int AutoID { get; set; } public string FileName { get; set; } public string Extension { get; set; } public string Module { get; set; } public byte[] Datas { get; set; } } }