DotBased/DotBased.AspNet.Authority/Models/Authority/AuthorityAttributeItem.cs

10 lines
262 B
C#

namespace DotBased.AspNet.Authority.Models.Authority;
public class AuthorityAttributeItem
{
public Guid BoundId { get; set; }
public string AttributeKey { get; set; } = string.Empty;
public string AttributeValue { get; set; } = string.Empty;
}