Files
pgsql-jellyfin/MediaBrowser.Model/SyncPlay/SyncPlayGroupDoesNotExistUpdate.cs
T

26 lines
827 B
C#

// <copyright file="SyncPlayGroupDoesNotExistUpdate.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
using System;
using System.ComponentModel;
namespace MediaBrowser.Model.SyncPlay;
/// <inheritdoc />
public class SyncPlayGroupDoesNotExistUpdate : GroupUpdate<string>
{
/// <summary>
/// Initializes a new instance of the <see cref="SyncPlayGroupDoesNotExistUpdate"/> class.
/// </summary>
/// <param name="groupId">The groupId.</param>
/// <param name="data">The data.</param>
public SyncPlayGroupDoesNotExistUpdate(Guid groupId, string data) : base(groupId, data)
{
}
/// <inheritdoc />
[DefaultValue(GroupUpdateType.GroupDoesNotExist)]
public override GroupUpdateType Type => GroupUpdateType.GroupDoesNotExist;
}