EPLAN_PROD_Plugin/Sinvo.EplanHpD.Plugin.WPFUI/Models/ScanCableModel.cs

96 lines
2.0 KiB
C#

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 _id;
public string Id
{
get => _id; set
{
_id = value;
OnPropertyChanged(nameof(Id));
}
}
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));
}
}
private string _length;
public string Length
{
get => _length;
set
{
_length = value;
OnPropertyChanged(nameof(Length));
}
}
private string _s_pin;
public string S_Pin
{
get => _s_pin;
set
{
_s_pin = value;
OnPropertyChanged(nameof(S_Pin));
}
}
private string _e_pin;
public string E_Pin
{
get => _e_pin;
set
{
_e_pin = value;
OnPropertyChanged(nameof(E_Pin));
}
}
}
}