29 lines
541 B
C#
29 lines
541 B
C#
|
|
using AutomaticApp.Common;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace AutomaticApp.Models
|
|||
|
|
{
|
|||
|
|
public class FTPModel : NotifyBase
|
|||
|
|
{
|
|||
|
|
private string ip;
|
|||
|
|
public string IP
|
|||
|
|
{
|
|||
|
|
get { return ip; }
|
|||
|
|
set { ip = value; this.DoNotify(); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private int port;
|
|||
|
|
|
|||
|
|
public int Port
|
|||
|
|
{
|
|||
|
|
get { return port; }
|
|||
|
|
set { port = value; this.DoNotify(); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|