using EPLAN.Harness.Core.Utils; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sinvo.EplanHpD.Plugin.WPFUI.Models { public class ScanCableModel : CheckedModel { private int _index; public int Index { get => _index; set { _index = value; OnPropertyChanged(nameof(Index)); } } private string _name; public string Name { get => _name; set { _name = value; OnPropertyChanged(nameof(Name)); } } private string _code; public string Code { get => _code; set { _code = value; OnPropertyChanged(nameof(Code)); } } private string _imprint; public string Imprint { get => _imprint; set { _imprint = value; OnPropertyChanged(nameof(Imprint)); } } } }