using MediaBrowser.Controller.Session;
namespace MediaBrowser.Controller.SyncPlay
{
    /// 
    /// Class GroupMember.
    /// 
    public class GroupMember
    {
        /// 
        /// Gets or sets a value indicating whether this member is buffering.
        /// 
        /// true if member is buffering; false otherwise.
        public bool IsBuffering { get; set; }
        /// 
        /// Gets or sets the session.
        /// 
        /// The session.
        public SessionInfo Session { get; set; }
        /// 
        /// Gets or sets the ping.
        /// 
        /// The ping.
        public long Ping { get; set; }
    }
}