123456789101112131415 |
- 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<SearchDeviceModel>
- {
- [PropertyAssociation(nameof(SearchDeviceModel.License))]
- public string License { get => Model.License; set => SetProperty(ref Model.License, value); }
- }
- }
|