IClientService.cs 334 B

1234567891011121314
  1. using Device;
  2. using ServiceBase;
  3. namespace EEMSUIClient.Services
  4. {
  5. public interface IClientService : IDisposable
  6. {
  7. bool Initialize(string ip, int port, string hub);
  8. Guid RegisterDevice(Models.DeviceInfo deviceInfo);
  9. event EventHandler<(Guid guid, FileType fileType)>? RequestFileReceived;
  10. }
  11. }