aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/SyncPlay/ISyncPlayRequest.cs
blob: bf19817732ab6c4a38c3b7cba749674d5bde6966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using MediaBrowser.Model.SyncPlay;

namespace MediaBrowser.Controller.SyncPlay
{
    /// <summary>
    /// Interface ISyncPlayRequest.
    /// </summary>
    public interface ISyncPlayRequest
    {
        /// <summary>
        /// Gets the request type.
        /// </summary>
        /// <returns>The request type.</returns>
        RequestType Type { get; }
    }
}