FileShare/ViewModels/MainWindowViewModel.cs
2026-05-21 20:34:06 +08:00

14 lines
365 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Avalonia_PC.ViewModels
{
/// <summary>
/// 主窗口的 ViewModel提供问候语等绑定属性。
/// </summary>
public partial class MainWindowViewModel : ViewModelBase
{
/// <summary>
/// 获取问候语文本。
/// </summary>
public string Greeting { get; } = "Welcome to Avalonia!";
}
}