namespace StructureHelperCommon.Models.Parameters { /// /// Represent pair of value with text /// /// public interface IValuePair { string Text { get; set; } T Value { get; set; } } }