104 lines
2.7 KiB
C#
104 lines
2.7 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Web.Areas.Adatszolgaltatasok.Models
|
|
{
|
|
public class InformatikaiAdatszolgaltatasRogzitesModel
|
|
{
|
|
|
|
public int? AlapszintuAMAktualis { get; set; }
|
|
|
|
public int? AlapszintuAMIgeny { get; set; }
|
|
|
|
public int? VizualisOMAktualis { get; set; }
|
|
|
|
public int? VizualisOMIgeny { get; set; }
|
|
|
|
public int? ProfMAktualis { get; set; }
|
|
|
|
public int? ProfMIgeny { get; set; }
|
|
|
|
public int? NotebookAktualis { get; set; }
|
|
|
|
public int? NotebookIgeny { get; set; }
|
|
|
|
public int? TabletAktualis { get; set; }
|
|
|
|
public int? TabletIgeny { get; set; }
|
|
|
|
public int? VekonykliensAktualis { get; set; }
|
|
|
|
public int? VekonykliensIgeny { get; set; }
|
|
|
|
public int? ProjektorAktualis { get; set; }
|
|
|
|
public int? ProjektorIgeny { get; set; }
|
|
|
|
public int? EgerAktualis { get; set; }
|
|
|
|
public int? EgerIgeny { get; set; }
|
|
|
|
public int? BillentyuzetAktualis { get; set; }
|
|
|
|
public int? BillentyuzetIgeny { get; set; }
|
|
|
|
public int? InteraktivTablaAktualis { get; set; }
|
|
|
|
public int? InteraktivTablaIgeny { get; set; }
|
|
|
|
public int? FFTNAktualis { get; set; }
|
|
|
|
public int? FFTNIgeny { get; set; }
|
|
|
|
public int? SzinesTNAktualis { get; set; }
|
|
|
|
public int? SzinesTNIgeny { get; set; }
|
|
|
|
public int? FFENAktualis { get; set; }
|
|
|
|
public int? FFENIgeny { get; set; }
|
|
|
|
public int? SzinesENAktualis { get; set; }
|
|
|
|
public int? SzinesENIgeny { get; set; }
|
|
|
|
public int? ScannerAktualis { get; set; }
|
|
|
|
public int? ScannerIgeny { get; set; }
|
|
|
|
public int? VirusvedelmiAktualis { get; set; }
|
|
|
|
public int? VirusvedelmiIgeny { get; set; }
|
|
|
|
public int? IrodaiSzoftverAktualis { get; set; }
|
|
|
|
public int? IrodaiSzoftverIgeny { get; set; }
|
|
|
|
public int? EgyebSzoftverAktualis { get; set; }
|
|
|
|
public int? EgyebSzoftverIgeny { get; set; }
|
|
|
|
public string EgyebSzoftverLeiras { get; set; }
|
|
|
|
public bool TervezettLego { get; set; }
|
|
|
|
public bool Tervezett3D { get; set; }
|
|
|
|
public List<MukodesiHelyAdatszolgaltatasModel> MukodesiHelyAdatszolgaltatasList { get; set; }
|
|
}
|
|
public class MukodesiHelyAdatszolgaltatasModel
|
|
{
|
|
|
|
public int MukodesiHelyId { get; set; }
|
|
|
|
public string InternetszolgaltatoNeve { get; set; }
|
|
|
|
public string InternetLetoltesiSavszelessege { get; set; }
|
|
|
|
public string InternetFeltoltesiSavszelessege { get; set; }
|
|
|
|
public int? InternetszolgaltatasHaviNettoDija { get; set; }
|
|
|
|
public bool? InformatikaOktatasVanNincs { get; set; }
|
|
|
|
}
|
|
}
|