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; } } }