This repository has been archived on 2025-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
namespace SCHALE.Toolbox.Models.SchaleDB;
|
|
|
|
public class StudentInfo
|
|
{
|
|
public int Id { get; set; } = 0;
|
|
public string DevName { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
}
|