using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CaeMesh; using System.ComponentModel; using CaeGlobals; namespace CaeModel { [Serializable] public class SurfaceInteraction : NamedClass { // Variables private List _properties; // Properties public List Properties { get { return _properties; } } // Constructors public SurfaceInteraction(string name) : base(name) { _properties = new List(); } // Methods public void AddProperty(SurfaceInteractionProperty property) { _properties.Add(property); } } }