2025-11-16 19:16:44 +08:00

18 lines
380 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CGamesServer.Business.Dto
{
public class SelectDevice
{
public string UserName { get; set; } = string.Empty;
public short DeviceType { get; set; }
public string SelectDeviceName { get; set; } = string.Empty;
}
}