11 lines
204 B
C#
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();
|
|
}
|