16 lines
347 B
C#
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>();
|
|
}
|
|
}
|