mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
13 lines
276 B
C#
13 lines
276 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Stats.V3;
|
|
|
|
/// <summary>
|
|
/// KavitaStats - Information about Series Relationships
|
|
/// </summary>
|
|
public sealed record RelationshipStatV3
|
|
{
|
|
public int Count { get; set; }
|
|
public RelationKind Relationship { get; set; }
|
|
}
|