This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,47 @@
using System;
using System.IO;
namespace Kreta.BusinessLogic.HelperClasses
{
public class EnaploAdatszolgaltatasCO
{
public int? ID { get; set; }
public bool? HasznalENaplot { get; set; }
public bool? HasznalPapirNaplot { get; set; }
public bool? HasznalEEllenorzot { get; set; }
public int? ENaploTipus { get; set; }
public int? ENaploInfra { get; set; }
public int? SzerzodesOsszege { get; set; }
public int? ForrasTipusa { get; set; }
public string SzerzodoNeve { get; set; }
public int? SzerzodoPozicio { get; set; }
public DateTime? SzerzodesKezdete { get; set; }
public DateTime? SzerzodesVege { get; set; }
public bool? VanHonlap { get; set; }
public string HonlapUrl { get; set; }
public MemoryStream SzerzodesFile { get; set; }
//Nevesítések
public string ENaploTipusNev { get; set; }
public string ENaploInfraNev { get; set; }
public string ForrasTipusaNev { get; set; }
public string SzerzodoPozicioNev { get; set; }
}
}