using API.Entities.Enums; namespace API.DTOs.Stats.V3; /// /// KavitaStats - Information about Series Relationships /// public sealed record RelationshipStatV3 { public int Count { get; set; } public RelationKind Relationship { get; set; } }