BasicKnowledgeCSharp/LessonsAndTasks/Lesson 22 - Вложенные циклы. Как работают/GameInfo.cs
Dvurechensky 058c8f2679 1.0
Main
2024-10-05 09:59:53 +03:00

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
}