feat/Update_Controllers_to_Allow_for_Premium_Membership
This commit is contained in:
@@ -7,6 +7,8 @@ public sealed class ApplicationUser : IdentityUser
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? DisplayName { get; set; }
|
||||
public string? PendingEmail { get; set; }
|
||||
public DateTimeOffset? PendingEmailRequestedAtUtc { get; set; }
|
||||
public string? ProfileCvText { get; set; }
|
||||
public string? ProfileCvStructureJson { get; set; }
|
||||
public int? CurrentCvUploadArtifactId { get; set; }
|
||||
@@ -17,6 +19,8 @@ public sealed class ApplicationUser : IdentityUser
|
||||
public string? GoogleEmail { get; set; }
|
||||
public DateTimeOffset? GoogleLinkedAt { get; set; }
|
||||
public string? MicrosoftSubject { get; set; }
|
||||
public string? MicrosoftTenantId { get; set; }
|
||||
public string? MicrosoftObjectId { get; set; }
|
||||
public string? MicrosoftEmail { get; set; }
|
||||
public DateTimeOffset? MicrosoftLinkedAt { get; set; }
|
||||
public string? TotpSecretEncrypted { get; set; }
|
||||
@@ -26,4 +30,6 @@ public sealed class ApplicationUser : IdentityUser
|
||||
public string? StripeSubscriptionId { get; set; }
|
||||
public string? StripeSubscriptionStatus { get; set; }
|
||||
public DateTime? StripeLastEventCreatedUtc { get; set; }
|
||||
public bool AiEnabled { get; set; } = true;
|
||||
public bool ExternalAiProcessingAllowed { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user