15 lines
455 B
C#
15 lines
455 B
C#
namespace Tnb.EquipMgr.Entities.Dto
|
|
{
|
|
public class MaintainRecordRepeatInput
|
|
{
|
|
public string id { get; set; } = string.Empty;
|
|
|
|
public string repeat_result { get; set; } = string.Empty;
|
|
public string repeat_descrip { get; set; } = string.Empty;
|
|
|
|
public string? repeat_remark { get; set; }
|
|
public string? attachment { get; set; }
|
|
|
|
public List<Dictionary<string, string>>? details { get; set; }
|
|
}
|
|
} |