23 lines
483 B
C#
23 lines
483 B
C#
using System;
|
|
|
|
namespace Kreta.Naplo.Domain.V3.OsztalyCsoport
|
|
{
|
|
public class BejelentettSzamonkeresekResponse
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Tema { get; set; }
|
|
|
|
public int ErtekelesMod { get; set; }
|
|
|
|
public int? OraSzam { get; set; }
|
|
|
|
public int TantargyId { get; set; }
|
|
|
|
public string TantargyNev { get; set; }
|
|
|
|
public Guid TanarUid { get; set; }
|
|
|
|
public string TanarNev { get; set; }
|
|
}
|
|
}
|