Files
cs-oo-project/Online Gokkantoor/Globals/Interfaces/IPloeg.cs

15 lines
306 B
C#

using System;
namespace Globals.Interfaces
{
public interface IPloeg
{
int Id { get; set; }
string naam { get; set; }
int score { get; }
bool scoreSet { get; }
event EventHandler scoreChanged;
void setScore(int i);
int getScore();
}
}