using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NuGetGallery.Monitoring { /// /// Thread-safe interface to reporting monitoring status /// public interface IEventReporter { void Report(MonitoringEvent evt); } }