using Shaker.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShakerApp.ViewModels { public class SearchDeviceViewModel : ViewModelBase { [PropertyAssociation(nameof(SearchDeviceModel.License))] public string License { get => Model.License; set => SetProperty(ref Model.License, value); } } }