30 lines
571 B
C#
30 lines
571 B
C#
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; }
|
|
//}
|
|
}
|