#nullable disable namespace MediaBrowser.Model.SyncPlay { /// /// Class GroupStateUpdate. /// public class GroupStateUpdate { /// /// Gets or sets the state of the group. /// /// The state of the group. public GroupState State { get; set; } /// /// Gets or sets the reason of the state change. /// /// The reason of the state change. public PlaybackRequestType Reason { get; set; } } }