replace v6 with experimental v7 code
This commit is contained in:
16
src/MpvNet.Windows/WPF/MsgBox/MsgBoxExDelegate.cs
Normal file
16
src/MpvNet.Windows/WPF/MsgBox/MsgBoxExDelegate.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user