19 lines
342 B
C#
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; }
|
|||
|
}
|
|||
|
}
|