namespace FindAndDrive.Domain.Models.DTO.Response; public class RoleResponse { public Guid RoleId { get; set; } public string RoleName { get; set; } public List Permissions { get; set; } public DateTime CreatedAt { get; set; } public DateTime? ModifiedAt { get; set; } }