Files
api-generator/Core/Interfaces/IView.cs
2025-10-11 13:08:09 +02:00

14 lines
240 B
C#

namespace Core.Interfaces;
public interface IView
{
void Exception(string message);
void Warning(string message);
void Info(string message);
void Success(string message);
void Progress(int percentage);
}