17 lines
398 B
C#
17 lines
398 B
C#
namespace Common.UI.ViewModels
|
|
{
|
|
using Common.UI.Infrastructure;
|
|
using Common.UI.Models;
|
|
|
|
internal class SettingsViewModel : ViewModel<SettingsViewModel>
|
|
{
|
|
private readonly SettingsModel model;
|
|
|
|
public SettingsViewModel()
|
|
: base()
|
|
=> this.model = AppHost.GetService<SettingsModel>();
|
|
|
|
public string Id => this.model.Id;
|
|
}
|
|
}
|