17 lines
384 B
C#
17 lines
384 B
C#
|
|
using System.Windows;
|
|
|
|
namespace MpvNet.Windows.WPF.MsgBox;
|
|
|
|
public abstract class MsgBoxExDelegate
|
|
{
|
|
public string? Message { get; set; }
|
|
public string? Details { get; set; }
|
|
public DateTime MessageDate { get; set; }
|
|
|
|
public virtual MessageBoxResult PerformAction(string message, string? details = null)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|