Files
cs-oo-project/Online Gokkantoor/ClassLibrary1/Keuze.cs
Michiel.VanDorpe 60eb72bd30 voila
2019-03-13 16:37:03 +01:00

20 lines
411 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Logic.General;
namespace Logic
{
public class Keuze
{
public int Match_ID { get; set; }
public int Speler_ID { get; set; }
public double Inzet { get; set; }
public Gokken Gok { get; set; } // thuis uit of gelijk
}
}