22 lines
630 B
C#
22 lines
630 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Dto.Admin
|
|
{
|
|
public class DeviceInfoDto
|
|
{
|
|
public string? DeviceId { get; set; }
|
|
public string? DeviceModel { get; set; }
|
|
public string? Platform { get; set; }
|
|
public string? Version { get; set; }
|
|
public string? Manufacturer { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? DeviceType { get; set; }
|
|
public string? VersionString { get; set; }
|
|
public string? UserName { get; set; }
|
|
}
|
|
}
|