...
This commit is contained in:
22
Presentation/HushianWebApp/Data/Dtos/Identity/RoleDto.cs
Normal file
22
Presentation/HushianWebApp/Data/Dtos/Identity/RoleDto.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Common.Dtos.Identity
|
||||
{
|
||||
public class RoleDto
|
||||
{
|
||||
public RoleDto(string id, string name, string normalizedName)
|
||||
{
|
||||
Id = id;
|
||||
Name = name;
|
||||
NormalizedName = normalizedName;
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string NormalizedName { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user