13 lines
243 B
C#
13 lines
243 B
C#
using Minesweeper.Core;
|
|
|
|
namespace Minesweeper.Presentation.ReadModels
|
|
{
|
|
public interface IGameReadModel
|
|
{
|
|
GameState State { get; }
|
|
int Width { get; }
|
|
int Height { get; }
|
|
int MinesCount { get; }
|
|
}
|
|
}
|