using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CaeMesh { public class InpElementSet { // Properties public string Name { get; set; } public HashSet InpElementTypeNames { get; set; } public HashSet ElementLabels { get; set; } // Constructors public InpElementSet(string name, HashSet inpElementTypeName, HashSet elementLabels) { Name = name; InpElementTypeNames = inpElementTypeName; ElementLabels = elementLabels; } } }