namespace Ghost.Editor.Core.AssetHandle; /// /// The base class for all asset types in the Ghost Editor. /// public abstract class Asset { public abstract string Name { get; set; } public Guid ID { get; } protected Asset(Guid id) { ID = id; } }