Spaces:
Running
Running
| using System.Collections.Generic; | |
| using System.ComponentModel.DataAnnotations; | |
| namespace TaskTrackingSystem.Shared.Models.Role | |
| { | |
| public class CreateRoleDto | |
| { | |
| [] | |
| public string Name { get; set; } = string.Empty; | |
| [] | |
| public string? Description { get; set; } | |
| /// <summary> | |
| /// Optional: Menu and permission codes to assign to this role on creation. | |
| /// </summary> | |
| public List<string> AccessCodes { get; set; } = new(); | |
| } | |
| } | |