Small UI changes (#3787)

This commit is contained in:
Joe Milazzo 2025-05-04 08:14:44 -06:00 committed by GitHub
parent 50a052e412
commit 5b8a643d82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
203 changed files with 369 additions and 446 deletions

View file

@ -4,7 +4,7 @@
/// <summary>
/// A set of colors for the color scape system in the UI
/// </summary>
public class ColorScapeDto
public sealed record ColorScapeDto
{
public string? Primary { get; set; }
public string? Secondary { get; set; }

View file

@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace API.DTOs.Theme;
public class DownloadableSiteThemeDto
public sealed record DownloadableSiteThemeDto
{
/// <summary>
/// Theme Name

View file

@ -7,7 +7,7 @@ namespace API.DTOs.Theme;
/// <summary>
/// Represents a set of css overrides the user can upload to Kavita and will load into webui
/// </summary>
public class SiteThemeDto
public sealed record SiteThemeDto
{
public int Id { get; set; }
/// <summary>

View file

@ -1,6 +1,6 @@
namespace API.DTOs.Theme;
public class UpdateDefaultThemeDto
public sealed record UpdateDefaultThemeDto
{
public int ThemeId { get; set; }
}