laatzen/Common/Ui/Common.UI/ViewModels/HomeViewModel.cs
2024-12-03 17:03:33 +01:00

17 lines
376 B
C#

namespace Common.UI.ViewModels
{
using Common.UI.Infrastructure;
using Common.UI.Models;
internal class HomeViewModel : ViewModel<HomeViewModel>
{
private readonly HomeModel model;
public HomeViewModel()
: base()
=> this.model = AppHost.GetService<HomeModel>();
public string Id => this.model.Id;
}
}