14 lines
299 B
C#
14 lines
299 B
C#
|
|
using System.Windows.Media;
|
|
|
|
namespace MpvNet.Windows.WPF.MsgBox;
|
|
|
|
public class MsgBoxUrl
|
|
{
|
|
public Uri? URL { get; set; }
|
|
public string? DisplayName { get; set; }
|
|
public Color Foreground { get; set; }
|
|
|
|
public MsgBoxUrl() => Foreground = MessageBoxEx.DefaultUrlForegroundColor;
|
|
}
|