#nullable disable
using System.Collections.Generic;
namespace MediaBrowser.Model.SyncPlay
{
///
/// Class GroupInfoDto.
///
public class GroupInfoDto
{
///
/// 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 GroupState 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 string LastUpdatedAt { get; set; }
}
}