Stability (I hope) (#2688)
This commit is contained in:
parent
92ad7db918
commit
7e61cca92d
30 changed files with 3336 additions and 177 deletions
|
@ -29,7 +29,10 @@ public class ExternalSeriesMetadata
|
|||
public long MalId { get; set; }
|
||||
public string GoogleBooksId { get; set; }
|
||||
|
||||
public DateTime LastUpdatedUtc { get; set; }
|
||||
/// <summary>
|
||||
/// Data is valid until this time
|
||||
/// </summary>
|
||||
public DateTime ValidUntilUtc { get; set; }
|
||||
|
||||
public Series Series { get; set; } = null!;
|
||||
public int SeriesId { get; set; }
|
||||
|
|
14
API/Entities/Metadata/SeriesBlacklist.cs
Normal file
14
API/Entities/Metadata/SeriesBlacklist.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
|
||||
namespace API.Entities.Metadata;
|
||||
|
||||
/// <summary>
|
||||
/// A blacklist of Series for Kavita+
|
||||
/// </summary>
|
||||
public class SeriesBlacklist
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int SeriesId { get; set; }
|
||||
public Series Series { get; set; }
|
||||
public DateTime LastChecked { get; set; } = DateTime.UtcNow;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue