mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-20 04:28:12 +02:00
14 lines
395 B
C#
Executable File
14 lines
395 B
C#
Executable File
namespace DotBased.AspNet.Authority.Models.Authority;
|
|
|
|
public class AuthorityAttribute(string attributeKey, Guid foreignKey)
|
|
{
|
|
public Guid ForeignKey { get; set; } = foreignKey;
|
|
|
|
public string AttributeKey { get; set; } = attributeKey;
|
|
|
|
public string AttributeValue { get; set; } = string.Empty;
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public long Version { get; set; }
|
|
} |