DotBased/DotBased.AspNet.Authority/Models/Authority/AuthorityRole.cs

25 lines
514 B
C#
Raw Normal View History

namespace DotBased.AspNet.Authority.Models.Authority;
public abstract class AuthorityRole
{
2025-01-08 16:30:51 +01:00
public AuthorityRole(string name) : this()
{
Name = name;
}
public AuthorityRole()
{
Id = Guid.NewGuid();
CreatedDate = DateTime.Now;
}
public Guid 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;
}