mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 18:20:47 +01:00
14 lines
360 B
C#
14 lines
360 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Needlework.Net.ViewModels.Pages;
|
|
|
|
|
|
public abstract partial class PageBase(string displayName, string icon) : ObservableValidator
|
|
{
|
|
public string DisplayName { get; } = displayName;
|
|
|
|
public string Icon { get; } = icon;
|
|
|
|
public abstract Task InitializeAsync();
|
|
} |