DotBased/DotBased.AspNet.Authority/Models/Authority/AuthorityGroup.cs
2025-02-02 23:33:00 +01:00

24 lines
522 B
C#
Executable File

namespace DotBased.AspNet.Authority.Models.Authority;
public class AuthorityGroup
{
public AuthorityGroup(string name) : this()
{
Name = name;
}
public AuthorityGroup()
{
Id = Guid.NewGuid();
CreatedDate = DateTime.Now;
}
public Guid Id { get; set; }
public string? Name { get; set; }
public long Version { get; set; }
public DateTime CreatedDate { get; set; }
public ICollection<AuthorityAttribute> Attributes { get; set; } = [];
}