Remontor/Remontor/Comp/IComp.cs

29 lines
603 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace Reseter2
{
internal 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();
}
}