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

13 lines
318 B
C#
Raw 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.

using CommunityToolkit.Mvvm.ComponentModel;
namespace Avalonia_PC.ViewModels
{
/// <summary>
/// ViewModel 基类,继承自 CommunityToolkit.Mvvm 的 ObservableObject
/// 提供属性变更通知功能。
/// </summary>
public abstract class ViewModelBase : ObservableObject
{
}
}