Files
EnglewoodLAB/Assets/Scripts/Studio/Command/FileInsertDbCommand.cs

18 lines
389 B
C#

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