13 lines
265 B
C#
13 lines
265 B
C#
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);
|
|
}
|
|
}
|