Remove some views and replace them with snackbar notifications

This commit is contained in:
Alexey Golub
2018-02-25 17:15:55 +02:00
parent 63e3ba8891
commit 656e5a5b0d
12 changed files with 10 additions and 181 deletions

View File

@@ -1,12 +0,0 @@
namespace DiscordChatExporter.Gui.Messages
{
public class ShowErrorMessage
{
public string Message { get; }
public ShowErrorMessage(string message)
{
Message = message;
}
}
}

View File

@@ -1,12 +0,0 @@
namespace DiscordChatExporter.Gui.Messages
{
public class ShowExportDoneMessage
{
public string FilePath { get; }
public ShowExportDoneMessage(string filePath)
{
FilePath = filePath;
}
}
}