mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
14 lines
320 B
C#
14 lines
320 B
C#
namespace DotBased.AspNet.Authority.Models.Authority;
|
|
|
|
public abstract class AuthorityRole
|
|
{
|
|
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;
|
|
} |