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

40 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
using CaeGlobals;
namespace CaeModel
{
[Serializable]
public class SolidSection : Section, ISerializable
{
// Variables
// Properties
// Constructors
public SolidSection(string name, string materialName, string regionName, RegionTypeEnum regionType, double thickness,
bool twoD)
: base(name, materialName, regionName, regionType, thickness, twoD)
{
}
public SolidSection(SerializationInfo info, StreamingContext context)
: base(info, context)
{
foreach (SerializationEntry entry in info)
{
switch (entry.Name)
{
default:
break;
}
}
}
}
}