using System;
using System.Collections.Generic;
namespace Jellyfin.Plugin.WatchedTogether.Models;
///
/// A request to update an existing group.
///
public class UpdateGroupRequest
{
///
/// Gets or sets the new member list. At least two.
///
public IReadOnlyList MemberUserIds { get; set; } = Array.Empty();
///
/// Gets or sets a value indicating whether unwatched state propagates too.
///
public bool SyncUnwatched { get; set; } = true;
///
/// Gets or sets a value indicating whether play counts are raised on watch.
///
public bool SyncPlayCount { get; set; }
///
/// Gets or sets a value indicating whether the group is suspended.
///
public bool IsDisabled { get; set; }
}