Files
cs-oo-project/Online Gokkantoor/Globals/Interfaces/IGame.cs
2019-08-12 13:28:38 +02:00

17 lines
313 B
C#

using System;
using Globals.classes;
using static Globals.main;
namespace Globals.Interfaces
{
public interface IGame
{
int Id { get; set; }
PloegInMatch home { get; set; }
PloegInMatch away { get; set; }
DateTime date { get; set; }
state getWinner();
}
}