Files
StructureHelper/StructureHelperCommon/Models/Parameters/IValuePair.cs
2024-06-02 16:56:44 +05:00

12 lines
287 B
C#

namespace StructureHelperCommon.Models.Parameters
{
/// <summary>
/// Represent pair of value with text
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IValuePair<T>
{
string Text { get; set; }
T Value { get; set; }
}
}