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; } } }