aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/IDeviceDiscovery.cs
blob: 086088deaeba9977c6fd6cd8a60bd37097fa51f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma warning disable CS1591

using System;
using Jellyfin.Data.Events;

namespace MediaBrowser.Model.Dlna
{
    public interface IDeviceDiscovery
    {
        event EventHandler<GenericEventArgs<UpnpDeviceInfo>> DeviceDiscovered;

        event EventHandler<GenericEventArgs<UpnpDeviceInfo>> DeviceLeft;
    }
}