13 lines
355 B
C#
13 lines
355 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_remark { get; set; }
|
|
|
|
public List<Dictionary<string,string>>? details { get; set; }
|
|
}
|
|
} |