mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
28 lines
599 B
C#
28 lines
599 B
C#
namespace DotBased.AspNet.Authority.Models.Authority;
|
|
|
|
public class AuthorityRole : AuthorityRole<Guid>
|
|
{
|
|
public AuthorityRole(string name) : this()
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public AuthorityRole()
|
|
{
|
|
Id = Guid.NewGuid();
|
|
CreatedDate = DateTime.Now;
|
|
}
|
|
}
|
|
|
|
public abstract class AuthorityRole<TKey> where TKey : IEquatable<TKey>
|
|
{
|
|
public TKey Id { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public long Version { get; set; }
|
|
|
|
public DateTime CreatedDate { get; set; }
|
|
|
|
public override string ToString() => Name ?? string.Empty;
|
|
} |