14 lines
240 B
C#
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);
|
|
} |