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