Files
2026-06-01 09:15:14 +02:00

15 lines
339 B
C#

namespace LiteCharms.Features.MidrandBooks.Seed.Configuration;
public sealed class CdnSettings
{
public string? BaseCdn { get; set; }
public string[]? BookCovers { get; set; }
public string[]? Authors { get; set; }
public string[]? AuthorThumbnails { get; set; }
public string[]? BookThumbnails { get; set; }
}