BMC: Add CompanyAccountId In LoginInputModel

This commit is contained in:
Palash Biswas 2023-01-10 10:37:30 +05:30
parent 9798125d18
commit 00af57fd4a
2 changed files with 2 additions and 2 deletions

View File

@ -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; }

View File

@ -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; }