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