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

18 lines
363 B
C#

using Models;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CGamesServer.Business.Dto
{
public class PostDevice : UserDevice
{
public string UserName { get; set; } = string.Empty;
public string IdStr { get; set; } = string.Empty;
}
}