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

10 lines
262 B
C#
Raw Normal View History

namespace DotBased.AspNet.Authority.Models.Authority;
public class AuthorityAttributeItem
{
2025-02-17 19:58:50 +01:00
public Guid BoundId { get; set; }
2025-02-17 19:58:50 +01:00
public string AttributeKey { get; set; } = string.Empty;
public string AttributeValue { get; set; } = string.Empty;
}