定义Input与Viewer视图接口

This commit is contained in:
zengwenjie
2025-09-15 18:19:01 +08:00
parent 072a0653e7
commit 59f1b077bd
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Deedy.Activity
{
public interface IDeedyInput
{
}
}

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Deedy.Activity
{
public class IDeedyViewer
{
}
}