22 lines
611 B
C#
22 lines
611 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 string Firstname { get; set; }
|
|
public string Lastname { get; set; }
|
|
public string Email { get; set; }
|
|
public string Phoneno { get; set; }
|
|
public string Password { get; set; }
|
|
public string Status { get; set; }
|
|
public string Protocol { get; set; }
|
|
public string Subdomain { get; set; }
|
|
public string Domain { get; set; }
|
|
}
|
|
}
|