DeviceManager/DeviceRepair.Models/Common/AttachmentSubmitModel.cs
2024-05-28 22:36:38 +08:00

19 lines
342 B
C#

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; }
}
}