21 lines
627 B
C#
21 lines
627 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Model.Admin
|
|
{
|
|
public class DeviceRegistrationRequest
|
|
{
|
|
public string? MedRepUsername { get; set; }
|
|
public string? MedRepPassword { 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; }
|
|
}
|
|
}
|