From 00af57fd4a3e4092053585b85f0729937bc4709a Mon Sep 17 00:00:00 2001 From: Palash Biswas Date: Tue, 10 Jan 2023 10:37:30 +0530 Subject: [PATCH] BMC: Add CompanyAccountId In LoginInputModel --- .../src/BCS.BMC.Web.Core/Models/TokenAuth/LoginInputModel.cs | 1 + .../src/BCS.BMC.Web.Core/Models/TokenAuth/RegistrationInput.cs | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/LoginInputModel.cs b/BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/LoginInputModel.cs index f5a7026..af52824 100644 --- a/BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/LoginInputModel.cs +++ b/BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/LoginInputModel.cs @@ -9,6 +9,7 @@ namespace BCS.BMC.Models.TokenAuth public class LoginInputModel { public string CompanyUrl { get; set; } + public string CompanyId { get; set; } public string UsernameOrEmailAddress { get; set; } public string Password { get; set; } public string FcmToken { get; set; } diff --git a/BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/RegistrationInput.cs b/BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/RegistrationInput.cs index 88145e9..671cf37 100644 --- a/BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/RegistrationInput.cs +++ b/BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/RegistrationInput.cs @@ -8,8 +8,7 @@ namespace BCS.BMC.Models.TokenAuth { public class RegistrationInput { - public string Firstname { get; set; } - public string Lastname { get; set; } + public string CompanyAccountId { get; set; } public string UserNameOrEmail { get; set; } public string Phoneno { get; set; } public string Password { get; set; }