aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/SyncPlay/GroupUpdate.cs
blob: 8c7208211c82327699d6ccabb28a53bc5fbb6366 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#nullable disable

namespace MediaBrowser.Model.SyncPlay
{
    /// <summary>
    /// Class GroupUpdate.
    /// </summary>
    public class GroupUpdate<T>
    {
        /// <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; }

        /// <summary>
        /// Gets or sets the data.
        /// </summary>
        /// <value>The data.</value>
        public T Data { get; set; }
    }
}