aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.Database/Jellyfin.Database.Implementations/LeafPlayedState.cs
blob: 0846013c454769bf8e2dd8c8d00b2c0231120666 (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace Jellyfin.Database.Implementations;

/// <summary>
/// An item's id paired with whether a given user has played it.
/// </summary>
/// <param name="Id">The id of the item.</param>
/// <param name="Played">Whether the user has played the item.</param>
public readonly record struct LeafPlayedState(Guid Id, bool Played);