mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-01-10 07:42:49 +01:00
12 lines
364 B
C#
12 lines
364 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;
|
|
}
|