feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneCaseInfo/Request/AlloDroneTopic.cs

22 lines
465 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Request
{
public class AlloDroneTopic
{
/// <summary>
/// 主题 Id
/// </summary>
public string TopicId { get; set; }
/// <summary>
/// 相关 Id 集合(角色/案件分类)
/// </summary>
public List<string> RelevanceIds { get; set; }
}
}