Browse Source

BMC: Internel server issue in Login API fixed

feature/ModificationForSentNotificationAPI
Palash Biswas 2 years ago
parent
commit
6180e3356a
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/LoginInputModel.cs
  2. +1
    -1
      BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/RegistrationInput.cs

+ 1
- 1
BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/LoginInputModel.cs View File

@ -9,7 +9,7 @@ namespace BCS.BMC.Models.TokenAuth
public class LoginInputModel public class LoginInputModel
{ {
public string CompanyUrl { get; set; } public string CompanyUrl { get; set; }
public int? CompanyId { get; set; }
public string CompanyId { get; set; }
public string UsernameOrEmailAddress { get; set; } public string UsernameOrEmailAddress { get; set; }
public string Password { get; set; } public string Password { get; set; }
public string FcmToken { get; set; } public string FcmToken { get; set; }


+ 1
- 1
BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/RegistrationInput.cs View File

@ -8,7 +8,7 @@ namespace BCS.BMC.Models.TokenAuth
{ {
public class RegistrationInput public class RegistrationInput
{ {
public int? CompanyAccountId { get; set; }
public string CompanyAccountId { get; set; }
public string UserNameOrEmail { get; set; } public string UserNameOrEmail { get; set; }
public string Phoneno { get; set; } public string Phoneno { get; set; }
public string Password { get; set; } public string Password { get; set; }


Loading…
Cancel
Save