This commit is contained in:
2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions
@@ -0,0 +1,53 @@
using System;
namespace Kreta.Naplo.Domain.V3.OsztalyCsoport
{
public class TanuloErtekelesekResponse
{
public int ErtekelesId { get; set; }
public int TantargyId { get; set; }
public string TantargyNev { get; set; }
public string Ertekeles { get; set; }
public int? ErtekelesOsztalyzatId { get; set; }
public string ErtekelesOsztalyzatNev { get; set; }
public string ErtekelesSzoveg { get; set; }
public int? ErtekelesSzazalek { get; set; }
public int ErtekelesFajtaId { get; set; }
public string ErtekelesFajtaNev { get; set; }
public int? ErtekelesModId { get; set; }
public string ErtekelesModNev { get; set; }
public int ErtekelesTipusId { get; set; }
public string ErtekelesTipusNev { get; set; }
public string ErtekelesTema { get; set; }
public DateTime ErtekelesDatum { get; set; }
public int? ErtekelesSuly { get; set; }
public DateTime ErtekelesRogzitesDatum { get; set; }
public Guid TanarUid { get; set; }
public int OsztalyCsoportId { get; set; }
public int FeladatEllatasiHelyId { get; set; }
public string FeladatEllatasiHelyNev { get; set; }
public bool Naplozart { get; set; }
}
}