kreta/Kreta.BusinessLogic/Classes/ComboBox/ExtraDataComboBoxListItem.cs
2024-03-13 00:33:46 +01:00

10 lines
226 B
C#

using System.Collections.Generic;
namespace Kreta.BusinessLogic.Classes.ComboBox
{
public class ExtraDataComboBoxListItem : ComboBoxListItem
{
public IDictionary<string, string> Data { get; set; }
}
}