Files
imprink/src/Imprink.Application/Dtos/RoleDto.cs
2025-06-21 20:53:49 +03:00

7 lines
157 B
C#

namespace Imprink.Application.Dtos;
public class RoleDto
{
public required Guid RoleId { get; set; }
public required string RoleName { get; set; }
}