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

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