spc-kiosk-pb/WinEtc/NewPosInstaller/Process/_IProcess.cs

15 lines
208 B
C#
Raw Normal View History

2019-06-16 05:12:09 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NewPosInstaller
{
public interface IProcess
{
bool Execute();
void Stop();
}
}