13 lines
347 B
C#
13 lines
347 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class TanarVegzettsegCO
|
|
{
|
|
public int ID { get; set; }
|
|
public int? TanarID { get; set; }
|
|
public int? Vegzettseg { get; set; }
|
|
public List<int> Kepesites { get; set; }
|
|
public string Egyeb { get; set; }
|
|
}
|
|
}
|