BMC: Internel server issue in Login API fixed

This commit is contained in:
Palash Biswas 2023-01-10 14:37:22 +05:30
parent 086ab86095
commit 6180e3356a
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ namespace BCS.BMC.Models.TokenAuth
public class LoginInputModel
{
public string CompanyUrl { get; set; }
public int? CompanyId { 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,7 +8,7 @@ namespace BCS.BMC.Models.TokenAuth
{
public class RegistrationInput
{
public int? CompanyAccountId { get; set; }
public string CompanyAccountId { get; set; }
public string UserNameOrEmail { get; set; }
public string Phoneno { get; set; }
public string Password { get; set; }