mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-04 17:16:10 +02:00
- Add AvaloniaUI GUI template to the project - Add missing newline to the CLI output
12 lines
240 B
C#
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!";
|
|
}
|
|
}
|