13 lines
329 B
C#
13 lines
329 B
C#
namespace Tnb.EquipMgr.Entities.Dto
|
|
{
|
|
public class MaintainRecordRepeatInput
|
|
{
|
|
public string id { get; set; }
|
|
|
|
public string repeat_result { get; set; }
|
|
|
|
public string repeat_remark { get; set; }
|
|
|
|
public List<Dictionary<string,string>> details { get; set; }
|
|
}
|
|
} |