mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 03:52:45 +00:00
18 lines
362 B
C#
18 lines
362 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 IFKeuze
|
|
{
|
|
int matchID { get; set; }
|
|
int spelerID { get; set; }
|
|
double inzet { get; set; }
|
|
Gokken gok { get; set; }
|
|
}
|
|
}
|