From 7ce747ce48f84ba31c2d6bde960cf3bf8ec9b56f Mon Sep 17 00:00:00 2001 From: Grae Jones Date: Mon, 23 Mar 2026 14:02:58 -0700 Subject: [PATCH] Reg Fix 1 --- Registration/Data/IRegistrationDataService.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Registration/Data/IRegistrationDataService.cs b/Registration/Data/IRegistrationDataService.cs index 8a4c757..f148591 100644 --- a/Registration/Data/IRegistrationDataService.cs +++ b/Registration/Data/IRegistrationDataService.cs @@ -22,6 +22,8 @@ public sealed class Applicant public string? WebsiteUrl { get; set; } public string? BusinessCategory { get; set; } public string? BusinessDescription { get; set; } + public string? FirstName { get; set; } + public string? LastName { get; set; } public string? ContactName { get; set; } public string? ContactEmail { get; set; } public string? ContactPhone { get; set; } @@ -42,7 +44,9 @@ public sealed class RegisterRequest public string? WebsiteUrl { get; set; } public string? BusinessCategory { 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? ContactPhone { get; set; } public string? EntraSubjectId { get; set; }