kuroswhattoplay/KurosWhatToPlay/Model/GameList.cs

11 lines
186 B
C#
Raw Normal View History

2025-03-18 16:51:50 +00:00
namespace KurosWhatToPlay.Model {
internal class GameList {
long Id { get; set; }
public string Name { get; set; }
public GameList() {
}
}
}