mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
22 lines
638 B
C#
22 lines
638 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace MediaBrowser.Model.SyncPlay;
|
|
|
|
/// <inheritdoc />
|
|
public class SyncPlayStateUpdate : GroupUpdate<GroupStateUpdate>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SyncPlayStateUpdate"/> class.
|
|
/// </summary>
|
|
/// <param name="groupId">The groupId.</param>
|
|
/// <param name="data">The data.</param>
|
|
public SyncPlayStateUpdate(Guid groupId, GroupStateUpdate data) : base(groupId, data)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[DefaultValue(GroupUpdateType.StateUpdate)]
|
|
public override GroupUpdateType Type => GroupUpdateType.StateUpdate;
|
|
}
|