namespace Brizco.Domain.Entities.User;
public class ApplicationRole : IdentityRole<Guid>
{
public string Description { get; set; } = string.Empty;
public Guid? ComplexId { get; set; }
public Complex.Complex? Complex { get; set; }
}