forked from Misaki/GhostEngine
17 lines
207 B
C#
17 lines
207 B
C#
namespace Ghost.Editor.Core.AssetHandle;
|
|
|
|
internal class AssetMeta
|
|
{
|
|
public Guid Guid
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public ImporterSettings? Settings
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|