mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-21 04:25:14 -05:00
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
12 lines
303 B
C#
12 lines
303 B
C#
namespace API.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; }
|
|
}
|