LSFE/LSFE.Infrastructure/Model/Admin/DeviceInfo.cs
2026-07-30 10:31:04 +08:00

22 lines
629 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 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; }
}
}