26 lines
863 B
C#
26 lines
863 B
C#
|
|
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<string> InpElementTypeNames { get; set; }
|
|||
|
|
public HashSet<int> ElementLabels { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
// Constructors
|
|||
|
|
public InpElementSet(string name, HashSet<string> inpElementTypeName, HashSet<int> elementLabels)
|
|||
|
|
{
|
|||
|
|
Name = name;
|
|||
|
|
InpElementTypeNames = inpElementTypeName;
|
|||
|
|
ElementLabels = elementLabels;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|