Initial Commit ...
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using xIdentityModels.Navigations;
|
||||
|
||||
namespace xIdentityModels.Models {
|
||||
public class XActionRequestContext {
|
||||
//
|
||||
public string Lang { get; set; }
|
||||
|
||||
//
|
||||
public string UserId { get; set; }
|
||||
public string UserName { get; set; }
|
||||
|
||||
//
|
||||
public string MobileNumber { get; set; }
|
||||
public string MobileVerificationCode { get; set; }
|
||||
public bool MobileVerified { get; set; }
|
||||
|
||||
//
|
||||
public string Email { get; set; }
|
||||
public string EmailVerificationCode { get; set; }
|
||||
public bool EmailVerified { get; set; }
|
||||
|
||||
//
|
||||
public string FirstName { get; set; }
|
||||
public string LastName { get; set; }
|
||||
public DateTime DateOfBirth { get; set; }
|
||||
|
||||
//
|
||||
public XDevice Device { get; set; }
|
||||
public IFormFile Thubmnail { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user