Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- using BPA.Helper;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace FryPot_DosingSystem.Model
- {
- internal class DeviceInfo : NotifyBase
- {
- private string _deviceNum;
- public string DeviceNum { get { return _deviceNum; }set { _deviceNum = value;OnPropertyChanged(); } }
-
- private string _deviceName;
- public string DeviceName { get { return _deviceName; } set { _deviceName = value; OnPropertyChanged(); } }
-
- private string _ip;
- public string Ip { get { return _ip; } set { _ip = value; OnPropertyChanged(); } }
-
- private string _port;
- public string Port { get { return _port; } set { _port = value; OnPropertyChanged(); } }
- }
- }
|