| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.ComponentModel.DataAnnotations; |
| | | 4 | | using System.Text; |
| | | 5 | | |
| | | 6 | | namespace MUNity.Schema.Conference |
| | | 7 | | { |
| | | 8 | | public class CreateTeamRoleGroupRequest |
| | | 9 | | { |
| | | 10 | | [Required] |
| | | 11 | | public string ConferenceId { get; set; } |
| | | 12 | | |
| | | 13 | | [Required] |
| | | 14 | | public string GroupName { get; set; } |
| | | 15 | | |
| | | 16 | | [Required] |
| | | 17 | | public string GroupFullName { get; set; } |
| | | 18 | | |
| | | 19 | | [Required] |
| | | 20 | | public string GroupShort { get; set; } |
| | | 21 | | |
| | | 22 | | [Range(1, 9999)] |
| | | 23 | | public int GroupLevel { get; set; } = 1; |
| | | 24 | | } |
| | | 25 | | |
| | | 26 | | public class CreateTeamRoleGroupResponse : AbstractResponse |
| | | 27 | | { |
| | | 28 | | |
| | 0 | 29 | | public int CreatedGroupId { get; set; } |
| | | 30 | | } |
| | | 31 | | } |