RobotApp/RobotApp/Interfaces/IInfomation.cs
Đăng Nguyễn 9ac5270885 update
2025-10-17 09:24:45 +07:00

11 lines
204 B
C#

using RobotApp.VDA5050.State;
namespace RobotApp.Interfaces;
public interface IInfomation
{
void AddInfo(Information infor);
void DeleteInfoType(string infoType);
void ClearAllInfos();
}