praktikum4/Domain/Enums/PersonType.cs

15 lines
219 B
C#
Raw Normal View History

2017-03-08 14:38:36 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Domain.Enums
{
2017-03-08 15:47:46 +02:00
public enum PersonType
2017-03-08 14:38:36 +02:00
{
2017-03-08 15:47:46 +02:00
Student,
Teacher
2017-03-08 14:38:36 +02:00
}
}