-
-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bcfb4a6
commit b24b868
Showing
13 changed files
with
510 additions
and
347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using API.Entities.Enums; | ||
|
||
namespace API.DTOs.Stats.V3; | ||
|
||
public class LibraryStatV3 | ||
{ | ||
public bool IncludeInDashboard { get; set; } | ||
public bool IncludeInSearch { get; set; } | ||
public bool UsingFolderWatching { get; set; } | ||
/// <summary> | ||
/// Are any exclude patterns setup | ||
/// </summary> | ||
public bool UsingExcludePatterns { get; set; } | ||
/// <summary> | ||
/// Will this library create collections from ComicInfo | ||
/// </summary> | ||
public bool CreateCollectionsFromMetadata { get; set; } | ||
/// <summary> | ||
/// Will this library create reading lists from ComicInfo | ||
/// </summary> | ||
public bool CreateReadingListsFromMetadata { get; set; } | ||
/// <summary> | ||
/// Type of the Library | ||
/// </summary> | ||
public LibraryType LibraryType { get; set; } | ||
public ICollection<FileTypeGroup> FileTypes { get; set; } | ||
/// <summary> | ||
/// Last time library was fully scanned | ||
/// </summary> | ||
public DateTime LastScanned { get; set; } | ||
/// <summary> | ||
/// Number of folders the library has | ||
/// </summary> | ||
public int NumberOfFolders { get; set; } | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
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; } | ||
} |
Oops, something went wrong.