mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-02-23 15:15:01 +01:00
21 lines
499 B
C#
Executable File
21 lines
499 B
C#
Executable File
namespace DotBased.AspNet.Authority.Models.Authority;
|
|
|
|
public class AuthorityRole()
|
|
{
|
|
public AuthorityRole(string name) : this()
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public long Version { get; set; }
|
|
|
|
public DateTime CreatedDate { get; set; } = DateTime.Now;
|
|
|
|
public IEnumerable<AuthorityAttribute> Attributes { get; set; } = [];
|
|
|
|
public override string ToString() => Name ?? string.Empty;
|
|
} |