mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-28 19:42:42 +00:00
9 lines
124 B
C#
9 lines
124 B
C#
using System;
|
|
namespace Globals.Interfaces
|
|
{
|
|
public interface IPloeg
|
|
{
|
|
string naam { get; set; }
|
|
}
|
|
}
|