#nullable enable using UnityEngine; using UVC.UI.Commands; namespace UVC.Studio.Command { /// /// 데이터베이스 삽입 커맨드 /// public class FileInsertDbCommand : ICommand { public void Execute(object? parameter = null) { Debug.Log("[FileInsertDbCommand] 데이터베이스 삽입 실행"); } } }