namespace AmebaPro3_ControlPanel.ViewModels; public abstract class PageViewModelBase : ViewModelBase { private string _title = string.Empty; public string Title { get => _title; protected set => SetProperty(ref _title, value); } }