Refactor portions of RootViewModel into DashboardViewModel

This commit is contained in:
Oleksii Holub
2022-04-04 01:34:46 +03:00
parent ad84ecf6a4
commit e29f08264c
9 changed files with 628 additions and 545 deletions

View File

@@ -0,0 +1,8 @@
namespace DiscordChatExporter.Gui.ViewModels.Messages;
public class NotificationMessage
{
public string Text { get; }
public NotificationMessage(string text) => Text = text;
}