Files
Petr_PTA25_Teor_09-12/ConsoleApp1/ISystem.cs
2025-12-09 14:33:11 +01:00

16 lines
256 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
internal interface ISystem
{
bool Start();
void Restart();
void Quit();
}
}