Files
RobotApp/RobotApp/Interfaces/IInfomation.cs
Đăng Nguyễn a01f140f2e update
2025-10-24 10:24:59 +07:00

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