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