2022-09-12 17:57:37 +03:00
|
|
|
using MapTo;
|
|
|
|
|
2022-11-18 03:15:53 +03:00
|
|
|
namespace CodeLiturgy.Data.Application.Users
|
2022-09-12 17:57:37 +03:00
|
|
|
{
|
|
|
|
[MapFrom(typeof(ApplicationRole))]
|
|
|
|
public partial class ApplicationRoleUnique
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string NormalizedName { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|