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

18 lines
367 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 PostColor : UserDeviceColor
{
public string UserName { get; set; } = string.Empty;
public string IdStr { get; set; } = string.Empty;
}
}