10 lines
191 B
C#
10 lines
191 B
C#
namespace UserManagement.Application.Dtos.Incomming
|
|
{
|
|
public class UpdatingRoleDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
}
|
|
}
|