mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 20:12:40 +00:00
18 lines
368 B
C#
18 lines
368 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; }
|
|
state ploeg { get; set; }
|
|
bool finished { get; set; }
|
|
double getProfit();
|
|
}
|
|
}
|