Infrastructure/OpenAuth.App/ServiceApp/FireManagement/Response/FireInfoDegreeForChart.cs

23 lines
553 B
C#
Raw Normal View History

2025-03-25 10:13:47 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.FireManagement.Response
{
public class FireInfoDegreeForChart
{
public string DateTime { get; set; }
public int ExtraLargeCount { get; set; }
public int LargeCount { get; set; }
}
2026-01-07 10:15:56 +08:00
public class FireInfoDegree
{
public DateTime Date { get; set; }
public int ExtraLargeCount { get; set; }
public int LargeCount { get; set; }
}
2025-03-25 10:13:47 +08:00
}