naps2/NAPS2.Lib.WinForms/Platform/Windows/WindowsServiceManager.cs

15 lines
222 B
C#
Raw Normal View History

2023-12-22 17:08:23 +03:00
namespace NAPS2.Platform.Windows;
// TODO
public class WindowsServiceManager : IOsServiceManager
{
public bool IsRegistered => false;
public void Register()
{
}
public void Unregister()
{
}
}