Files
wg_cpso/CaeModel/FileInOut/Common/ElementsToImport.cs

20 lines
382 B
C#
Raw Permalink Normal View History

2026-03-25 18:20:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FileInOut.Input
{
[Serializable]
[Flags]
public enum ElementsToImport
{
// Must start from 1 othervise the 0 value has no effect
Beam = 1,
Shell = 2,
Solid = 4,
All = Beam | Shell | Solid
}
}