Stats V3 (#3443)
This commit is contained in:
parent
bcfb4a6172
commit
b24b8686f3
13 changed files with 510 additions and 347 deletions
39
API/DTOs/Stats/V3/LibraryStatV3.cs
Normal file
39
API/DTOs/Stats/V3/LibraryStatV3.cs
Normal file
|
|
@ -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; }
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue