sa/GetStartedApp/ViewModels/MainWindowViewModel.cs
2024-07-23 09:40:10 +02:00

9 lines
274 B
C#

namespace GetStartedApp.ViewModels;
public class MainWindowViewModel : ViewModelBase
{
#pragma warning disable CA1822 // Mark members as static
public string Greeting => "Welcome to asdf Avalonia!";
#pragma warning restore CA1822 // Mark members as static
}