using System;
namespace Jellyfin.Database.Implementations;
///
/// An item's id paired with whether a given user has played it.
///
/// The id of the item.
/// Whether the user has played the item.
public readonly record struct LeafPlayedState(Guid Id, bool Played);