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

12 lines
216 B
C#

using System;
namespace Globals.Interfaces
{
public interface IPloeg
{
int Id { get; set; }
string naam { get; set; }
int score { get; set; }
bool scoreSet { get; }
}
}