22 lines
555 B
C#
22 lines
555 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Kreta.Enums;
|
|
using Kreta.Naplo.Domain.V3.Adatszotar;
|
|
|
|
namespace Kreta.Naplo.Domain.V3.OsztalyCsoport
|
|
{
|
|
public class OsztalyCsoportErtekelesRequest
|
|
{
|
|
public DateTime Datum { get; set; }
|
|
|
|
public Adatszotar<ErtekelesModEnum> Mod { get; set; }
|
|
|
|
public string Tema { get; set; }
|
|
|
|
public int OsztalyCsoportId { get; set; }
|
|
|
|
public int TantargyId { get; set; }
|
|
|
|
public List<TanuloForOsztalyCsoportErtekelesRequest> TanuloLista { get; set; }
|
|
}
|
|
}
|