18 lines
377 B
C#
18 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CGamesServer.Business.Dto
|
|
{
|
|
public class SelectSkill
|
|
{
|
|
public string UserName { get; set; } = string.Empty;
|
|
|
|
public short SkillType { get; set; }
|
|
|
|
public string SelectSkillName { get; set; } = string.Empty;
|
|
}
|
|
}
|