10 lines
298 B
C#
10 lines
298 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.RoleDefinition
|
|
{
|
|
public class AddServiceRoleDefinitionDto
|
|
{
|
|
public string Key { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|