Smart rounding was ajusted
This commit is contained in:
12
StructureHelperCommon/Models/Parameters/IValuePair.cs
Normal file
12
StructureHelperCommon/Models/Parameters/IValuePair.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user