#nullable disable
using System.Collections.Generic;
namespace MediaBrowser.Model.SyncPlay
{
    /// 
    /// Class GroupInfoView.
    /// 
    public class GroupInfoView
    {
        /// 
        /// Gets or sets the group identifier.
        /// 
        /// The group identifier.
        public string GroupId { get; set; }
        /// 
        /// Gets or sets the playing item id.
        /// 
        /// The playing item id.
        public string PlayingItemId { get; set; }
        /// 
        /// Gets or sets the playing item name.
        /// 
        /// The playing item name.
        public string PlayingItemName { get; set; }
        /// 
        /// Gets or sets the position ticks.
        /// 
        /// The position ticks.
        public long PositionTicks { get; set; }
        /// 
        /// Gets or sets the participants.
        /// 
        /// The participants.
        public IReadOnlyList Participants { get; set; }
    }
}