Files
BQP/srcs/RobotNet10/RobotApp/RobotNet10.RobotApp/Interfaces/IInfomation.cs
2026-07-13 09:25:40 +07:00

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