using System; namespace Kreta.Framework.Caching.DictionaryItemTables { /// /// Kódtétel osztály. /// [Serializable] public class ErtekelesTipusDictionaryItem : DictionaryItem { /// /// Az osztály konstruktora. /// /// Kódtétel elem public ErtekelesTipusDictionaryItem(DictionaryItem dictionaryItem) : base(dictionaryItem) { ExtendedProperties = dictionaryItem.ExtendedProperties; } #region Properties /// /// Egyszer adható-e az értékelés típus? /// public bool IsEgyszerAdhato => (bool)ExtendedProperties[nameof(IsEgyszerAdhato)]; #endregion } }