mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 03:52:45 +00:00
14 lines
237 B
C#
14 lines
237 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataLaag
|
|
{
|
|
public class Enums
|
|
{
|
|
public enum Gokken { Uitploeg, Gelijk, Thuisploeg}
|
|
}
|
|
}
|