19 lines
453 B
C#
19 lines
453 B
C#
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> : IValuePair<T>
|
|
{
|
|
bool IsValid { get; set; }
|
|
string Name { get; set; }
|
|
string ShortName { get; set; }
|
|
Color Color { get; set; }
|
|
string Description { get; set; }
|
|
}
|
|
}
|