jellyfin/MediaBrowser.Model/SyncPlay/GroupInfoDto.cs

52 lines
1.4 KiB
C#
Raw Normal View History

using System;
2020-05-09 08:34:07 -04:00
using System.Collections.Generic;
2020-05-06 17:42:53 -04:00
namespace MediaBrowser.Model.SyncPlay
2020-04-01 11:52:42 -04:00
{
/// <summary>
/// Class GroupInfoDto.
2020-04-01 11:52:42 -04:00
/// </summary>
2020-05-12 03:08:35 -04:00
public class GroupInfoDto
2020-04-01 11:52:42 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="GroupInfoDto"/> class.
/// </summary>
public GroupInfoDto()
{
GroupId = string.Empty;
GroupName = string.Empty;
Participants = new List<string>();
}
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 group name.
2020-04-01 11:52:42 -04:00
/// </summary>
/// <value>The group name.</value>
public string GroupName { get; set; }
2020-04-01 11:52:42 -04:00
/// <summary>
/// Gets or sets the group state.
2020-04-01 11:52:42 -04:00
/// </summary>
/// <value>The group state.</value>
public GroupStateType State { get; set; }
2020-04-01 11:52:42 -04:00
/// <summary>
2020-04-21 17:37:37 -04:00
/// Gets or sets the participants.
2020-04-01 11:52:42 -04:00
/// </summary>
2020-04-21 17:37:37 -04:00
/// <value>The participants.</value>
2020-05-09 08:34:07 -04:00
public IReadOnlyList<string> Participants { get; set; }
/// <summary>
/// Gets or sets the date when this dto has been updated.
/// </summary>
/// <value>The date when this dto has been updated.</value>
public DateTime LastUpdatedAt { get; set; }
2020-04-01 11:52:42 -04:00
}
}