24 lines
1.1 KiB
C#
24 lines
1.1 KiB
C#
using Adaptation.Eaf.EquipmentCore.SelfDescription.ParameterTypes;
|
|
|
|
namespace Adaptation.Eaf.EquipmentCore.SelfDescription.ElementDescription
|
|
{
|
|
public class EquipmentParameter
|
|
{
|
|
public EquipmentParameter(EquipmentParameter source, ParameterTypeDefinition typeDefinition) { }
|
|
public EquipmentParameter(string name, ParameterTypeDefinition typeDefinition, string description, bool isTransient = false, bool isReadOnly = true) { }
|
|
public EquipmentParameter(string id, string name, ParameterTypeDefinition typeDefinition, string description, bool isTransient = false, bool isReadOnly = true) { }
|
|
|
|
public string Name { get; }
|
|
public string Id { get; }
|
|
public string Description { get; }
|
|
public string SourcePath { get; }
|
|
public string SourceEquipment { get; }
|
|
public ParameterTypeDefinition TypeDefinition { get; }
|
|
public bool IsTransient { get; }
|
|
public bool IsReadOnly { get; }
|
|
|
|
public override string ToString() { return base.ToString(); }
|
|
public string ToStringWithDetails() { return base.ToString(); }
|
|
}
|
|
|
|
} |