12345678910111213141516171819202122 |
- using System.Collections.Generic;
- using System.Drawing;
- namespace NumMachine
- {
- public interface INumMachineLinker
- {
- string GetLicensePlate(int id);
- Image GetImage(int id);
- Dictionary<string, int> GetIpIdMap();
- void SetRatio(double ratio);
- void Start();
- void Stop();
- }
- }
|