44 lines
1.4 KiB
C#
44 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Model.Admin
|
|
{
|
|
public class AdminVerificationRequest
|
|
{
|
|
public string? AdminUserName { get; set; }
|
|
public string? AdminPassword { get; set; }
|
|
}
|
|
public class RevokeDeviceRequest
|
|
{
|
|
public string? AdminPassword { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? DeviceId { get; set; }
|
|
public string? Reason { get; set; }
|
|
}
|
|
|
|
/*public class UserDevice
|
|
{
|
|
public int Id { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? DeviceId { get; set; }
|
|
public string? DeviceModel { get; set; }
|
|
public string? DevicePlatform { get; set; }
|
|
public string? DeviceVersion { get; set; }
|
|
public string? DeviceManufacturer { get; set; }
|
|
public string? AppVersion { get; set; }
|
|
public bool IsAuthorized { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public DateTime RegisteredDate { get; set; }
|
|
public string? RegisteredBy { get; set; }
|
|
public DateTime? LastLoginDate { get; set; }
|
|
public DateTime? DeactivatedDate { get; set; }
|
|
public string? DeactivatedBy { get; set; }
|
|
public string? DeactivationReason { get; set; }
|
|
public string? Notes { get; set; }
|
|
}*/
|
|
}
|