mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 10:37:04 -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; }
 | |
| }
 |