2021-05-04 17:23:52 +02:00
|
|
|
using zero.Core.Attributes;
|
2020-04-03 18:03:36 +02:00
|
|
|
|
|
|
|
|
namespace zero.Core.Entities
|
|
|
|
|
{
|
2020-11-25 00:51:01 +01:00
|
|
|
[Collection("Roles")]
|
2021-05-04 17:23:52 +02:00
|
|
|
public class BackofficeUserRole : ZeroIdentityRole
|
2020-04-03 18:03:36 +02:00
|
|
|
{
|
2020-04-16 12:56:17 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Additional description
|
|
|
|
|
/// </summary>
|
2021-05-04 17:23:52 +02:00
|
|
|
public string Description { get; set; }
|
2020-04-16 12:56:17 +02:00
|
|
|
|
2020-04-03 18:03:36 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Displayed icon alongside name
|
|
|
|
|
/// </summary>
|
2021-05-04 17:23:52 +02:00
|
|
|
public string Icon { get; set; }
|
2020-04-03 18:03:36 +02:00
|
|
|
}
|
2020-04-08 13:07:15 +02:00
|
|
|
}
|