Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

16 lines
387 B
C#

using Kavita.Models.Entities.Enums.Theme;
namespace Kavita.Models.Entities.Interfaces;
/// <summary>
/// A theme in some kind
/// </summary>
public interface ITheme
{
public string Name { get; set; }
public string NormalizedName { get; set; }
public string FileName { get; set; }
public bool IsDefault { get; set; }
public ThemeProvider Provider { get; set; }
}