| 12345678910111213141516171819202122232425 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TeamAAS_VP.Models
- {
- public class TcpConfig : BindableBase
- {
- private string _IP = "127.0.0.1";
- public string IP
- {
- get { return _IP; }
- set { SetProperty(ref _IP, value); }
- }
- private int _Port = 5000;
- public int Port
- {
- get { return _Port; }
- set { SetProperty(ref _Port, value); }
- }
- }
- }
|