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