aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/IDeviceDiscovery.cs
blob: 05209e53d0f9aabc8149752ed28217c4d90496e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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;
    }
}