15 lines
212 B
C#
15 lines
212 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
public class GameInfo
|
|||
|
{
|
|||
|
public GameType TypeOfGame { get; set; }
|
|||
|
|
|||
|
public List<Game> Games { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public enum GameType
|
|||
|
{
|
|||
|
RPG,
|
|||
|
Shooter,
|
|||
|
Strategy
|
|||
|
}
|