wabbajack/Wabbajack.App.Wpf/Interventions/IStatusMessage.cs

12 lines
225 B
C#
Raw Normal View History

using System;
namespace Wabbajack.Interventions
{
public interface IStatusMessage
{
DateTime Timestamp { get; }
string ShortDescription { get; }
string ExtendedDescription { get; }
}
}