namespace Ghost.Editor.AssetHandle; public abstract class Asset { /// /// Get the Guid of the asset. /// public Guid GUID { get; } = Guid.NewGuid(); /// /// True if the asset is a folder, false if it is a file. /// public bool IsFolder { get; } internal void GenerateMetadata() { } }