Spaces:
Running
Running
| using System.ComponentModel.DataAnnotations; | |
| namespace TaskTrackingSystem.Shared.Models.Role | |
| { | |
| public class UpdateRoleDto | |
| { | |
| [] | |
| public string Name { get; set; } = string.Empty; | |
| [] | |
| public string? Description { get; set; } | |
| } | |
| } | |