Tools for graphs were added
This commit is contained in:
20
StructureHelperCommon/Models/Parameters/IValueParameter.cs
Normal file
20
StructureHelperCommon/Models/Parameters/IValueParameter.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Media;
|
||||
|
||||
namespace StructureHelperCommon.Models.Parameters
|
||||
{
|
||||
public interface IValueParameter<T>
|
||||
{
|
||||
bool IsValid { get; set; }
|
||||
string Name { get; set; }
|
||||
string ShortName { get; set; }
|
||||
Color Color { get; set; }
|
||||
string MeasurementUnit { get; set; }
|
||||
T Value { get; set; }
|
||||
string Description { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user