using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel; using CaeGlobals; using DynamicTypeDescriptor; namespace CPSO { [Serializable] public abstract class ViewResultFieldOutput { // Variables protected DynamicCustomTypeDescriptor _dctd = null; // Properties [Category("Data")] [OrderedDisplayName(0, 10, "Name")] [Description("Name of the field output.")] public abstract string Name { get; set; } // Constructors // Methods public abstract CaeResults.ResultFieldOutput GetBase(); } }