using System;
namespace Kreta.Framework.Caching.DictionaryItemTables
{
///
/// Kódtétel osztály.
///
[Serializable]
public class AllampolgarsagDictionaryItem : DictionaryItem
{
///
/// Az osztály konstruktora.
///
/// Kódtétel elem
public AllampolgarsagDictionaryItem(DictionaryItem dictionaryItem) : base(dictionaryItem)
{
ExtendedProperties = dictionaryItem.ExtendedProperties;
}
#region Properties
///
/// Az állampolgárság kód 2
///
public string Kod2 => (string)ExtendedProperties[nameof(Kod2)];
#endregion
}
}