kreta/Kreta.BusinessLogic/HelperClasses/ImportCo/OrarendImportFileUploadCo.cs
2024-03-13 00:33:46 +01:00

36 lines
978 B
C#

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; }
}
}