Files
2026-07-13 13:13:17 +08:00

21 lines
414 B
C#

#nullable enable
namespace T3.Core.Operator.Interfaces;
/// <summary>
/// Provides provide a status information about a errors and warnings.
/// </summary>
public interface IStatusProvider
{
StatusLevel GetStatusLevel();
string? GetStatusMessage();
enum StatusLevel
{
Undefined,
Success,
Tip,
Notice,
Warning,
Error,
}
}