69 lines
1.6 KiB
C#
69 lines
1.6 KiB
C#
using System;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class EszkozCO
|
|
{
|
|
public int? ID { get; set; }
|
|
|
|
public string Nev { get; set; }
|
|
|
|
public int? TeremID { get; set; }
|
|
|
|
public string TeremNev { get; set; }
|
|
|
|
public string LeltariSzam { get; set; }
|
|
|
|
public int? Jelleg { get; set; } //EszkozJellegEnum?
|
|
|
|
public int? Tipus { get; set; } //EszkozTipusEnum?
|
|
|
|
public int? Kategoria { get; set; } //EszkozKategoriaEnum?
|
|
|
|
public DateTime? BeszerzesDatum { get; set; }
|
|
|
|
public int? BeszerzesiAr { get; set; }
|
|
|
|
public int? Darabszam { get; set; }
|
|
|
|
public int? MennyisegiEgyseg { get; set; } //MertekegysegTipusEnum?
|
|
|
|
public string GyariSzam { get; set; }
|
|
|
|
public int? GyartasiEv { get; set; }
|
|
|
|
public int? SzemelyiFelelos { get; set; }
|
|
|
|
public string FelelosNev { get; set; }
|
|
|
|
public string Szallito { get; set; }
|
|
|
|
public string FokonyviSzam { get; set; }
|
|
|
|
public int? Berelt { get; set; }
|
|
|
|
public int? TanuloHozzaferhet { get; set; }
|
|
|
|
public int? PedagogusHozzaferhet { get; set; }
|
|
|
|
public int? Multimedias { get; set; }
|
|
|
|
public int? HalozatiKapcsolat { get; set; }
|
|
|
|
public int? InternetKapcsolat { get; set; }
|
|
|
|
public int? Hordozhato { get; set; }
|
|
|
|
public bool Tartozek { get; set; }
|
|
|
|
public string TartozekHivatkozas { get; set; }
|
|
|
|
public string Megjegyzes { get; set; }
|
|
|
|
public int? Celja { get; set; } //EszkozCelEnum?
|
|
|
|
public string Vonalkod { get; set; }
|
|
|
|
public int? NemMukodik { get; set; }
|
|
}
|
|
}
|