StableVersion4.3/HL_FristAidPlatform_Public/Models/EcgModel.cs

27 lines
703 B
C#

using System.Collections.Generic;
namespace HL_FristAidPlatform_Public
{
public class EqmtList
{
public string eqmtClass { get; set; }
public string eqmtNo { get; set; }
public string eqmtTypeNo { get; set; }
public string ifStatic { get; set; }
public string noUseReason { get; set; }
public string useStatus { get; set; }
}
public class Header
{
public string errorCode { get; set; }
public string errorMsg { get; set; }
public string resultCode { get; set; }
}
public class RootObject
{
public List<EqmtList> eqmtList { get; set; }
public Header header { get; set; }
}
}