namespace WeEngine.CommonDto { public class RunOperationDto { /// /// 分组编号 /// public string GroupNo { get; set; } /// /// 处理行为 /// public string BehaviorWord { get; set; } /// /// 处理角色 /// public string BehaviorRole { get; set; } /// /// 情景路径 /// public string ScenePath { get; set; } /// /// 是否检查关联角色 /// public bool CheckRole { get; set; } } }