You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
615 B
C#

namespace OPC.Common
{
using System;
public class Host
{
public string Domain;
public string HostName;
public string Password;
public string UserName;
public Host()
{
this.HostName = null;
this.UserName = null;
this.Password = null;
this.Domain = null;
}
public Host(string hostName)
{
this.HostName = null;
this.UserName = null;
this.Password = null;
this.Domain = null;
this.HostName = hostName;
}
}
}