mirror of
https://gitlab.com/2009scape/Saradomin-Launcher.git
synced 2026-08-01 14:19:14 -06:00
14 lines
No EOL
273 B
C#
14 lines
No EOL
273 B
C#
using Avalonia.Controls.Html;
|
|
|
|
namespace Saradomin.Messaging
|
|
{
|
|
public class MainViewLoadedMessage
|
|
{
|
|
public HtmlControl HtmlView { get; }
|
|
|
|
public MainViewLoadedMessage(HtmlControl htmlView)
|
|
{
|
|
HtmlView = htmlView;
|
|
}
|
|
}
|
|
} |