15 lines
339 B
C#
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; }
|
|
}
|