Add GUI template

- Add AvaloniaUI GUI template to the project
- Add missing newline to the CLI output
This commit is contained in:
Stone_Red
2022-02-20 16:07:06 +01:00
parent 162c456ae5
commit 7783ebb2e9
13 changed files with 644 additions and 0 deletions
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace HyperbolicDownloaderGUI.ViewModels
{
public class MainWindowViewModel : ViewModelBase
{
public string Greeting => "Welcome to Avalonia!";
}
}