10 lines
226 B
C#
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; }
|
|
}
|
|
}
|
|
|