jellyfin/MediaBrowser.Model/SyncPlay/GroupUpdate.cs

27 lines
671 B
C#
Raw Normal View History

2020-05-06 17:42:53 -04:00
namespace MediaBrowser.Model.SyncPlay
2020-04-01 11:52:42 -04:00
{
/// <summary>
/// Class GroupUpdate.
2020-04-01 11:52:42 -04:00
/// </summary>
public class GroupUpdate<T>
2020-04-01 11:52:42 -04:00
{
/// <summary>
/// Gets or sets the group identifier.
/// </summary>
/// <value>The group identifier.</value>
public string GroupId { get; set; }
/// <summary>
/// Gets or sets the update type.
/// </summary>
/// <value>The update type.</value>
public GroupUpdateType Type { get; set; }
2020-04-01 11:52:42 -04:00
/// <summary>
/// Gets or sets the data.
/// </summary>
/// <value>The data.</value>
public T Data { get; set; }
}
}