DeviceManager/DeviceRepair.Models/Preserve/MaintenanceRecordSubmit.cs

26 lines
629 B
C#
Raw Normal View History

2024-05-28 14:36:38 +00:00
using System;
using System.Collections.Generic;
namespace DeviceRepair.Models
{
[Serializable]
public class MaintenanceRecordSubmit
{
public MaintenanceRecordSubmit()
{
Imgs = new List<AttachmentSubmitModel>();
Files = new List<AttachmentSubmitModel>();
}
public MaintenanceRecordInfo Record { get; set; }
public List<AttachmentSubmitModel> Files { get; set; }
public List<AttachmentSubmitModel> Imgs { get; set; }
/// <summary>
/// 不用的
/// </summary>
public byte[] ContentData { get; set; }
}
}