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