Files
mpv.net/src/MpvNet.Windows/WPF/MsgBox/MsgBoxExDelegate.cs
2023-10-24 11:17:45 +02:00

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();
}
}