mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 09:52:45 -05:00
12 lines
231 B
C#
12 lines
231 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace PatchGenerator.ViewModels
|
||
|
{
|
||
|
public class MainWindowViewModel : ViewModelBase
|
||
|
{
|
||
|
public string Greeting => "Welcome to Avalonia!";
|
||
|
}
|
||
|
}
|