Reg Fix 1
All checks were successful
Registration / build-deploy (push) Successful in 1m13s

This commit is contained in:
Grae Jones
2026-03-23 14:02:58 -07:00
parent b4fd0b6c9e
commit 7ce747ce48

View File

@@ -22,6 +22,8 @@ public sealed class Applicant
public string? WebsiteUrl { get; set; } public string? WebsiteUrl { get; set; }
public string? BusinessCategory { get; set; } public string? BusinessCategory { get; set; }
public string? BusinessDescription { get; set; } public string? BusinessDescription { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public string? ContactName { get; set; } public string? ContactName { get; set; }
public string? ContactEmail { get; set; } public string? ContactEmail { get; set; }
public string? ContactPhone { get; set; } public string? ContactPhone { get; set; }
@@ -42,7 +44,9 @@ public sealed class RegisterRequest
public string? WebsiteUrl { get; set; } public string? WebsiteUrl { get; set; }
public string? BusinessCategory { get; set; } public string? BusinessCategory { get; set; }
public string? BusinessDescription { get; set; } public string? BusinessDescription { get; set; }
public string? ContactName { get; set; } public string? FirstName { get; set; }
public string? LastName { get; set; }
public string? ContactName { get; set; } // Combined first + last, set by client
public string? ContactEmail { get; set; } public string? ContactEmail { get; set; }
public string? ContactPhone { get; set; } public string? ContactPhone { get; set; }
public string? EntraSubjectId { get; set; } public string? EntraSubjectId { get; set; }