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,36 @@
using System;
using System.Collections.Generic;
namespace Kreta.BusinessLogic.HelperClasses.ImportCo
{
public class OrarendImportFileUploadCo
{
public List<List<string>> ImportData { get; set; }
public int OrarendImportMuvelet { get; set; }
public int OrarendImportTipus { get; set; }
public bool IsNapirendImport { get; set; }
public bool IsTtfImport { get; set; }
public bool IsOraszamUpdate { get; set; }
public bool IsOsszefuggoSzakmaiGyakorlat { get; set; }
public int FeladatellatasiHelyId { get; set; }
public DateTime? OrarendiOraLezarasDateTime { get; set; }
public DateTime OraErvenyessegMinDate { get; set; }
public DateTime OraErvenyessegMaxDate { get; set; }
public DateTime OraErvenyessegVegzosMaxDate { get; set; }
public string WorksheetName { get; set; }
public Dictionary<int, string> ExcelHeaderList { get; set; }
}
}