UX Overhaul Part 1 (#3047)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
This commit is contained in:
parent
5934d516f3
commit
ff79710ac6
324 changed files with 11589 additions and 4598 deletions
19
API/Entities/Interfaces/IHasCoverImage.cs
Normal file
19
API/Entities/Interfaces/IHasCoverImage.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
namespace API.Entities.Interfaces;
|
||||
|
||||
public interface IHasCoverImage
|
||||
{
|
||||
/// <summary>
|
||||
/// Absolute path to the (managed) image file
|
||||
/// </summary>
|
||||
/// <remarks>The file is managed internally to Kavita's APPDIR</remarks>
|
||||
public string? CoverImage { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Primary color derived from the Cover Image
|
||||
/// </summary>
|
||||
public string? PrimaryColor { get; set; }
|
||||
/// <summary>
|
||||
/// Secondary color derived from the Cover Image
|
||||
/// </summary>
|
||||
public string? SecondaryColor { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue