Files
wg_cpso/CaeModel/GeometricRegionType.cs
2026-03-25 18:20:24 +08:00

19 lines
301 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaeModel
{
[Serializable]
public enum GeometricRegionType
{
Node,
NodeSet,
Element,
ElementSet,
ReferencePoint
}
}