12 lines
270 B
C#
12 lines
270 B
C#
using RobotNet.VDA5050.State;
|
|
|
|
namespace RobotNet10.RobotApp.Interfaces;
|
|
|
|
public interface IInfomation
|
|
{
|
|
Information[] InformationState { get; }
|
|
void AddInfo(Information infor);
|
|
void DeleteInfoType(string infoType);
|
|
void ClearAllInfos();
|
|
}
|