mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-08-17 01:31:42 +02:00
.github
.idea
app
.idea
Desktop
Common
Dialogs
CheckBox
File
Message
Dialog.cs
DialogResult.cs
MessageDialog.axaml
MessageDialog.axaml.cs
MessageDialogModel.cs
Progress
TextBox
Discord
Main
Resources
Server
App.axaml
App.axaml.cs
Arguments.cs
Desktop.csproj
Program.cs
Resources
Server
Utils
.editorconfig
.gitignore
Directory.Build.props
DiscordHistoryTracker.sln
NuGet.Config
Version.cs
build.sh
build.wsl.sh
empty.dht
global.json
tools
web
.gitattributes
.gitignore
LICENSE.md
README.md
12 lines
365 B
C#
12 lines
365 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;
|
|
}
|