Kavita/Kavita.Models/DTOs/Internal/AppSettingsDto.cs
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

12 lines
313 B
C#

namespace Kavita.Models.DTOs.Internal;
#nullable enable
public sealed record AppSettingsDto
{
public required string TokenKey { get; set; }
public int Port { get; set; }
public string? IpAddresses { get; set; }
public required string BaseUrl { get; set; }
public int Cache { get; set; }
}