23 lines
387 B
C#
23 lines
387 B
C#
/*
|
|
* Author: Nikolay Dvurechensky
|
|
* Site: https://www.dvurechensky.pro/
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
* Last Updated: 12 мая 2025 02:47:11
|
|
* Version: 1.0.3
|
|
*/
|
|
|
|
using System.Collections.Generic;
|
|
|
|
public class GameInfo
|
|
{
|
|
public GameType TypeOfGame { get; set; }
|
|
|
|
public List<Game> Games { get; set; }
|
|
}
|
|
|
|
public enum GameType
|
|
{
|
|
RPG,
|
|
Shooter,
|
|
Strategy
|
|
} |