using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.Response { /// /// 案件专题返回值 /// 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 //{ // public T Id { get; set; } // public string Name { get; set; } //} }