#nullable enable using UnityEngine; using UVC.UI.Commands; namespace UVC.Studio.Command { /// /// Meta Data Json 내보내기 커맨드 /// public class FileExportMetaCommand : ICommand { public void Execute(object? parameter = null) { Debug.Log("[FileExportMetaCommand] Meta Data Json 내보내기 실행"); } } }