Files
TechHelper/Entities/DTO/UserClassRoleDto.cs
SpecialX 017cc2169c temp
2025-07-01 19:05:07 +08:00

15 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entities.DTO
{
public class UserClassRoleDto
{
public List<(byte, byte)> ClassInfo { get; set; } = new List<(byte, byte)> ();
public string Role { get; set; } = string.Empty;
}
}