22 lines
605 B
C#
22 lines
605 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Kreta.BusinessLogic.Classes.MobileApi.Naplo.V3.Co.Enum;
|
|
using Kreta.Enums;
|
|
|
|
namespace Kreta.BusinessLogic.Classes.MobileApi.Naplo.V3.Co.Ertekeles
|
|
{
|
|
public class OsztalyCsoportErtekelesRequestCo
|
|
{
|
|
public DateTime Datum { get; set; }
|
|
|
|
public NaploEnumCo<ErtekelesModEnum> Mod { get; set; }
|
|
|
|
public string Tema { get; set; }
|
|
|
|
public int OsztalyCsoportId { get; set; }
|
|
|
|
public int TantargyId { get; set; }
|
|
|
|
public List<TanuloForOsztalyCsoportErtekelesRequestCo> TanuloLista { get; set; }
|
|
}
|
|
}
|