Make it workie

This commit is contained in:
2025-12-09 15:21:29 +01:00
parent c4468ee686
commit 06aaa40f26
6 changed files with 82 additions and 5 deletions

View File

@@ -6,10 +6,14 @@ using System.Threading.Tasks;
namespace ConsoleApp1
{
internal interface ISystem
public interface ISystem
{
string Name { get; }
string Version { get; }
string SN { get; }
bool Start();
void Restart();
void Quit();
bool Quit();
}
}