17 lines
376 B
C#
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;
|
|
}
|
|
}
|