StableVersion4.3/HL_FristAidPlatform_Help/Model/ReprotModel.cs

31 lines
963 B
C#

using System.Collections.Generic;
namespace HL_FristAidPlatform_Help
{
public class ReprotModel
{
public List<ReprotMonth> reprotMonths{ get; set; }
public List<ReportDetails> reportDetails{ get; set; }
}
public class ReprotMonth
{
public string { get; set; }
public double { get; set; }
public double { get; set; }
public double { get; set; }
public double { get; set; }
public double { get; set; }
public double { get; set; }
public double { get; set; }
}
public class ReportDetails
{
public string { get; set; }
public string { get; set; }
public string { get; set; }
public string { get; set; }
public double { get; set; }
public double { get; set; }
}
}