SCCManager/Remontor/Comp/IComp.cs

29 lines
601 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace Remontor
{
public interface IComp
{
string GetName();
string GetNetName();
string GetNetNameStr();
string GetResetName();
IPAddress GetIP();
int GetImage();
void SetIP(IPAddress ip);
void SetName(string name);
void SetNetName(string netName);
void SetImage(int imdexImg);
void SetDescription(string description);
string GetDescription();
}
}