mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 03:52:45 +00:00
20 lines
457 B
C#
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();
|
|
}
|
|
}
|