30 lines
747 B
C#
30 lines
747 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Naplo.Domain.V3.Orarend
|
|
{
|
|
public class TanuloJelenletResponse
|
|
{
|
|
public TanuloJelenletResponse(int tanuloId, int allapot, int? keses, string szoveg, bool hasMulasztasGomb)
|
|
{
|
|
TanuloId = tanuloId;
|
|
Allapot = allapot;
|
|
MulasztasTipus = allapot;
|
|
Keses = keses;
|
|
Szoveg = szoveg;
|
|
HasMulasztasGomb = hasMulasztasGomb;
|
|
}
|
|
|
|
public int TanuloId { get; set; }
|
|
|
|
public int Allapot { get; set; }
|
|
|
|
public int MulasztasTipus { get; set; }
|
|
|
|
public int? Keses { get; set; }
|
|
|
|
public string Szoveg { get; set; }
|
|
|
|
public bool HasMulasztasGomb { get; set; }
|
|
}
|
|
}
|