mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 12:02:40 +00:00
19 lines
397 B
C#
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();
|
|
}
|
|
}
|