forked from Raphael/SCHALE.GameServer
9 lines
201 B
C#
9 lines
201 B
C#
|
namespace SCHALE.Toolbox.Models.SchaleDB;
|
|||
|
|
|||
|
public class StudentInfo
|
|||
|
{
|
|||
|
public int Id { get; set; } = 0;
|
|||
|
public string DevName { get; set; } = "";
|
|||
|
public string Name { get; set; } = "";
|
|||
|
}
|