84b626d344
屎山
13 lines
253 B
C#
13 lines
253 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ink_Canvas.Plugins
|
|
{
|
|
public interface IInkCanvasService
|
|
{
|
|
void OpenWhiteboard();
|
|
void CloseWhiteboard();
|
|
Task OpenWhiteboardAsync(int delayMilliseconds = 0);
|
|
}
|
|
}
|