22 lines
628 B
C#
22 lines
628 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BCS.BMC.Models.TokenAuth
|
|
{
|
|
public class RegistrationInput
|
|
{
|
|
public int? CompanyAccountId { get; set; }
|
|
public string UserNameOrEmail { get; set; }
|
|
public string Phoneno { get; set; }
|
|
public string Password { get; set; }
|
|
public string Status { get; set; }
|
|
public string Protocol { get; set; }
|
|
public string CompanyUrl { get; set; }
|
|
public string Subdomain { get; set; }
|
|
public string Domain { get; set; }
|
|
}
|
|
}
|