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

16 lines
347 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CGamesServer.Business.Dto
{
public class SelectDevices
{
public string UserName { get; set; } = string.Empty;
public List<string> SelectDeviceNames { get; set; } = new List<string>();
}
}