0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 09:52:45 -05:00

12 lines
231 B
C#
Raw Normal View History

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