1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2025-09-18 10:24:48 +02:00
Files
Discord-History-Tracker/app/Desktop/Dialogs/Message/MessageDialogModel.cs
2022-02-21 22:27:29 +01:00

12 lines
374 B
C#

namespace DHT.Desktop.Dialogs.Message {
sealed class MessageDialogModel {
public string Title { get; init; } = "";
public string Message { get; init; } = "";
public bool IsOkVisible { get; init; } = false;
public bool IsYesVisible { get; init; } = false;
public bool IsNoVisible { get; init; } = false;
public bool IsCancelVisible { get; init; } = false;
}
}