2021-12-26 22:05:28 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2021-12-30 00:15:37 +00:00
|
|
|
|
namespace Wabbajack.Interventions
|
2021-12-26 22:05:28 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IStatusMessage
|
|
|
|
|
{
|
|
|
|
|
DateTime Timestamp { get; }
|
|
|
|
|
string ShortDescription { get; }
|
|
|
|
|
string ExtendedDescription { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|