EP 0.1.1
This commit is contained in:
29
Convention/[Symbolization]/Internal/Namespace.cs
Normal file
29
Convention/[Symbolization]/Internal/Namespace.cs
Normal 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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user