Files
HyperbolicDownloader/HyperbolicDownloaderGUI/ViewModels/MainWindowViewModel.cs
T
Stone_Red 7783ebb2e9 Add GUI template
- Add AvaloniaUI GUI template to the project
- Add missing newline to the CLI output
2022-02-20 16:07:06 +01:00

12 lines
240 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace HyperbolicDownloaderGUI.ViewModels
{
public class MainWindowViewModel : ViewModelBase
{
public string Greeting => "Welcome to Avalonia!";
}
}