Browse Source

BMC: Add CompanyAccountId In LoginInputModel

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

+ 1
- 0
BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/LoginInputModel.cs 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; }


+ 1
- 2
BCS.BMC/src/BCS.BMC.Web.Core/Models/TokenAuth/RegistrationInput.cs 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; }


Loading…
Cancel
Save