11 lines
250 B
C#
11 lines
250 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Marco.Pms.Model.Entitlements
|
|
{
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
public bool? IsRootUser { get; set; } = false;
|
|
public bool IsActive { get; set; } = true;
|
|
}
|
|
}
|