DeviceManager/DeviceRepair.Models/Common/AttachmentSubmitModel.cs

19 lines
342 B
C#
Raw Permalink Normal View History

2024-05-28 14:36:38 +00:00
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; }
}
}