spc-kiosk-pb/WinEtc/NewPosInstaller/Process/_IProcess.cs
2019-06-16 14:12:09 +09:00

15 lines
208 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NewPosInstaller
{
public interface IProcess
{
bool Execute();
void Stop();
}
}