mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-04-12 23:07:13 +03:00
12 lines
366 B
C#
12 lines
366 B
C#
namespace DHT.Desktop.Dialogs {
|
|
public 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;
|
|
}
|
|
}
|