10 lines
189 B
C#
10 lines
189 B
C#
namespace UserManagement.Application.Dtos.Outgoing
|
|
{
|
|
public class ReadingRoleDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
}
|
|
}
|