mirror of
https://github.com/blueskythlikesclouds/SonicAudioTools.git
synced 2025-02-08 23:19:44 +01:00
23 lines
502 B
C#
23 lines
502 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
|
|
namespace CsbBuilder.BuilderNodes
|
|
{
|
|
public abstract class BuilderBaseNode : ICloneable
|
|
{
|
|
[Category("General"), ReadOnly(true)]
|
|
[Description("Name of this node.")]
|
|
public string Name { get; set; }
|
|
|
|
public object Clone()
|
|
{
|
|
return MemberwiseClone();
|
|
}
|
|
}
|
|
}
|