Files
wg_cpso/CaeGlobals/CommonClasses/EmptyNamedClass.cs

22 lines
506 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 CaeGlobals
{
[Serializable]
public class EmptyNamedClass : NamedClass
{
// Empty named class is used to trasfer the name only
public EmptyNamedClass(string name)
:base()
{
_checkName = false; // the name may contain other cahracters - do not use constructor with name
Name = name;
}
}
}