Reseter2/Reseter2/IComp.cs

26 lines
501 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 GetResetName();
IPAddress GetIP();
int GetImage();
void SetIP(IPAddress ip);
void SetName(string name);
void SetImage(int imdexImg);
void SetDescription(string description);
string GetDescription();
}
}