using System; using System.Collections.Generic; namespace MediaBrowser.Model.SyncPlay { /// /// Class GroupInfoDto. /// public class GroupInfoDto { /// /// Initializes a new instance of the class. /// public GroupInfoDto() { GroupId = string.Empty; GroupName = string.Empty; Participants = new List(); } /// /// Gets or sets the group identifier. /// /// The group identifier. public string GroupId { get; set; } /// /// Gets or sets the group name. /// /// The group name. public string GroupName { get; set; } /// /// Gets or sets the group state. /// /// The group state. public GroupStateType State { get; set; } /// /// Gets or sets the participants. /// /// The participants. public IReadOnlyList Participants { get; set; } /// /// Gets or sets the date when this dto has been updated. /// /// The date when this dto has been updated. public DateTime LastUpdatedAt { get; set; } } }