Newer
Older
Qwilight / Igniter / MSG / ViewAllowWindow.cs
@Taehui Taehui on 14 Aug 334 bytes 2024-08-14 오후 12:39
using CommunityToolkit.Mvvm.Messaging.Messages;
using System.Windows;

namespace Igniter.MSG
{
    public sealed class ViewAllowWindow : RequestMessage<MessageBoxResult>
    {
        public string Text { get; set; }

        public MessageBoxButton Input { get; set; }

        public MessageBoxImage Drawing { get; set; }
    }
}