//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Controller.SyncPlay
{
using MediaBrowser.Model.SyncPlay;
///
/// Interface ISyncPlayRequest.
///
public interface ISyncPlayRequest
{
///
/// Gets the request type.
///
/// The request type.
RequestType Type { get; }
}
}