mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-02-23 15:15:01 +01:00
18 lines
464 B
C#
Executable File
18 lines
464 B
C#
Executable File
namespace DotBased.AspNet.Authority.Models.Authority;
|
|
|
|
public class AuthorityAttribute(string attributeKey, Guid bound)
|
|
{
|
|
public AuthorityAttribute() : this(string.Empty, Guid.NewGuid())
|
|
{
|
|
}
|
|
|
|
public Guid BoundId { get; set; } = bound;
|
|
|
|
public string AttributeKey { get; set; } = attributeKey;
|
|
|
|
public string AttributeValue { get; set; } = string.Empty;
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public long Version { get; set; }
|
|
} |