GroupStateUpdate.cs 570 B

1234567891011121314151617181920
  1. namespace MediaBrowser.Model.SyncPlay
  2. {
  3. /// <summary>
  4. /// Class GroupStateUpdate.
  5. /// </summary>
  6. public class GroupStateUpdate
  7. {
  8. /// <summary>
  9. /// Gets or sets the state of the group.
  10. /// </summary>
  11. /// <value>The state of the group.</value>
  12. public GroupStateType State { get; set; }
  13. /// <summary>
  14. /// Gets or sets the reason of the state change.
  15. /// </summary>
  16. /// <value>The reason of the state change.</value>
  17. public PlaybackRequestType Reason { get; set; }
  18. }
  19. }