This commit is contained in:
ninemine
2025-07-01 20:34:09 +08:00
parent dbea849f6c
commit bf6b893412
4 changed files with 70 additions and 8 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Convention.Symbolization.Internal
{
internal sealed class NamespaceModel
{
}
public sealed class Namespace : Variable
{
private NamespaceModel Data;
public override object Clone()
{
Namespace result = new()
{
Data = Data
};
return result;
}
}
}