SearchDeviceViewModel.cs 429 B

123456789101112131415
  1. using Shaker.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ShakerApp.ViewModels
  8. {
  9. public class SearchDeviceViewModel : ViewModelBase<SearchDeviceModel>
  10. {
  11. [PropertyAssociation(nameof(SearchDeviceModel.License))]
  12. public string License { get => Model.License; set => SetProperty(ref Model.License, value); }
  13. }
  14. }