feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneCaseInfo/Response/TopicResponse.cs

30 lines
571 B
C#
Raw Permalink Normal View History

2026-02-03 16:00:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Response
{
/// <summary>
/// 案件专题返回值
/// </summary>
public class TopicResponse
{
public string TopicId { get; set; }
public string TopicName { get; set; }
public string CaseTypes { get; set; }
public string Roles { get; set; }
}
//public class Item<T>
//{
// public T Id { get; set; }
// public string Name { get; set; }
//}
}