Files
cs-oo-project/Online Gokkantoor/Globals/Interfaces/IBet.cs
Beppe df39b0392c yup
2019-07-04 01:05:11 +02:00

19 lines
397 B
C#

using System;
using Globals.classes;
using static Globals.main;
namespace Globals.Interfaces
{
public interface IBet
{
int Id { get; set; }
Game game { get; set; }
Person person { get; set; }
double cash { get; set; }
bool succes { get; }
state ploeg { get; set; }
bool finished { get; set; }
double getProfit();
}
}