using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.Infrastructure.Model.Admin { public class DeviceInfo { 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; } } }