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

21 lines
789 B
C#

using System;
using System.Collections.Generic;
using System.Data;
namespace Kreta.BusinessLogic.HelperClasses
{
public class TanuloErtekelesGridHelperCo
{
public DataSet DataSet { get; set; }
public DateTime FelevVegeDatum { get; set; }
public int TanevId { get; set; }
public bool IsJegyekAtlagaMegjelenik { get; set; }
public DateTime NaplozarasDatuma { get; set; }
public DateTime? Datum { get; set; }
public TanuloErtekelesVisibilityCo TanuloErtekelesVisibilityCo { get; set; }
public List<int> EgyszerAdhatoErtekelesTipusIds { get; set; }
// NOTE: Performancia miatt használunk Dictionary-t List helyett.
public Dictionary<int, ErtekelesModCo> ErtekelesModDictionary { get; set; }
}
}