CrumbViewModel.cs 389 B

1234567891011121314151617181920
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PLCTool.Models
  8. {
  9. public class CrumbViewModel : BindableBase
  10. {
  11. private string _name;
  12. public string Name
  13. {
  14. get { return _name; }
  15. set { SetProperty(ref _name, value); }
  16. }
  17. }
  18. }