DepartmentProject/DepartmentPortal/Department/DepartmentDatabaseImplementation.csproj/Models/BlueAsteriskNewHour.cs

17 lines
384 B
C#

using System.Collections.Generic;
namespace DepartmentDatabaseImplementation.Models
{
public class BlueAsteriskNewHour
{
public int Kurs { get; set; }
public int Semester { get; set; }
public string ObjectCode { get; set; }
public string TypeNormCode { get; set; }
public Dictionary<string, decimal> TimeNorms { get; set; }
}
}