25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace FryPot_DosingSystem.Model
- {
- internal class DeviceInfo : ObservableObject
- {
- 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(); } }
- }
- }
|