6 lines
144 B
C#
6 lines
144 B
C#
|
|
namespace Brizco.Identity.Api.Domain.Entities;
|
|||
|
|
|
|||
|
|
public class ApplicationRole : IdentityRole<Guid>
|
|||
|
|
{
|
|||
|
|
public Guid ComplexId { get; set; }
|
|||
|
|
}
|