Files
cs-oo-project/Blok2 Online Gokkantoor/DataLaag/Interfaces/IFWedstrijden.cs
Michiel.VanDorpe 60eb72bd30 voila
2019-03-13 16:37:03 +01:00

20 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static DataLaag.Enums;
namespace DataLaag.Interfaces
{
public interface IFWedstrijden
{
int wedstrijdID { get; set; }
string thuisPloeg { get; set; }
string uitPloeg { get; set; }
int scoreThuisPloeg { get; set; }
int scoreUitPloeg { get; set; }
Gokken GetWinnaar();
}
}