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(); } }