Infrastructure/OpenAuth.App/ServiceApp/Response/TifForTaskResp.cs

31 lines
707 B
C#
Raw Normal View History

2024-11-14 10:41:36 +08:00
using OpenAuth.Repository.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Response
{
public class TifForTaskResp
{
public List<AreaGroup> AreaGroups { get; set; }
}
public class AreaGroup
{
public string AreaName { get; set; }
public List<TifDateGroup> TifDateGroups { get; set; }
}
public class TifDateGroup
{
public string TifDate { get; set; }
public List<TifData> TifDatas { get; set; }
}
public class TifData
{
public string Id { get; set; }
public string TifName { get; set; }
}
}