1234567891011121314151617181920 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PLCTool.Models
- {
- public class CrumbViewModel : BindableBase
- {
- private string _name;
- public string Name
- {
- get { return _name; }
- set { SetProperty(ref _name, value); }
- }
- }
- }
|