IPersonDetector.cs 330 B

1234567891011121314
  1. using Assets.StreetLight.Poco;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Assets.StreetLight.Interfaces
  8. {
  9. public interface IPersonDetector
  10. {
  11. public event EventHandler<IEnumerable<Person>> PersonsDetected;
  12. }
  13. }