diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-23 12:32:34 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-07-23 12:32:34 -0400 |
| commit | ffd9460d51980a550ef5460e5df4e942b63077a7 (patch) | |
| tree | b0179f3e4e58e3b8e0937511982257632e2b7cc1 /MediaBrowser.Controller/Dlna | |
| parent | 23bab4030872268fdfe98d27f7136d5279d990f8 (diff) | |
add hdhomerun auto-discovery
Diffstat (limited to 'MediaBrowser.Controller/Dlna')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/IDeviceDiscovery.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/IDeviceDiscovery.cs b/MediaBrowser.Controller/Dlna/IDeviceDiscovery.cs new file mode 100644 index 0000000000..e8083b3632 --- /dev/null +++ b/MediaBrowser.Controller/Dlna/IDeviceDiscovery.cs @@ -0,0 +1,10 @@ +using System; + +namespace MediaBrowser.Controller.Dlna +{ + public interface IDeviceDiscovery + { + event EventHandler<SsdpMessageEventArgs> DeviceDiscovered; + event EventHandler<SsdpMessageEventArgs> DeviceLeft; + } +} |
