23 lines
518 B
C#
23 lines
518 B
C#
namespace Kreta.Web.Areas.Hianyzas.Models
|
|
{
|
|
public class MulasztasokSaveModel
|
|
{
|
|
public int? ID { get; set; }
|
|
|
|
public bool? Igazolt { get; set; }
|
|
|
|
public int? IgazolasTipus { get; set; }
|
|
|
|
public int MulasztasTipus { get; set; }
|
|
|
|
public int? KesesIdotartama { get; set; }
|
|
|
|
public string Megjegyzes { get; set; }
|
|
|
|
public bool? Visszavonhato { get; set; }
|
|
|
|
public int TanuloId { get; set; }
|
|
|
|
public int TanitasiOraId { get; set; }
|
|
}
|
|
}
|