feat/Update_Controllers_to_Allow_for_Premium_Membership

This commit is contained in:
cesnimda
2026-08-03 09:17:28 +02:00
parent de937d25dc
commit c3f4a57195
187 changed files with 26062 additions and 991 deletions
+6
View File
@@ -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; }
}