Refactor app architecture and clean local artifacts

This commit is contained in:
AzuTear
2026-06-24 23:43:14 +02:00
parent 17134b3b82
commit fef1d36fe8
274 changed files with 37724 additions and 6065 deletions
@@ -0,0 +1,68 @@
namespace Backend.Contracts;
public sealed record TimelineItem(
string Key,
string Title,
DateOnly StartsAt,
DateOnly EndsAt,
string State);
public sealed record FeaturedCategoryDto(
int Id,
string GroupName,
string Name,
string Description,
int MaxNomineesPerUser);
public sealed record WinnerPreviewDto(
int Year,
string Category,
string WinnerName,
string WinnerSlug,
string WinnerPlatform,
string WinnerUrl);
public sealed record FaqItemDto(string Question, string Answer);
public sealed record PublicSocialLinkDto(
string Label,
string Platform,
string Url,
string? Icon = null,
bool ShowOnHost = true,
bool ShowOnCommunity = true);
public sealed record FooterLinkDto(
string Label,
string Url);
public sealed record PublicSiteContentDto(
string HostDisplayName,
string HostTagline,
string NewsletterUrl,
string PrivacyEmail,
string PrivacyPolicyContent,
IEnumerable<PublicSocialLinkDto> SocialLinks,
IEnumerable<FooterLinkDto> FooterLinks);
public sealed record PublicSiteStatusResponse(
bool DemoLoginEnabled,
bool MaintenanceModeEnabled,
string MaintenanceTitle,
string MaintenanceMessage);
public sealed record OverviewResponse(
int SeasonId,
int Year,
string Title,
DateOnly ShowDate,
TimeOnly ShowStartsAt,
string ShowStreamUrl,
string CurrentPhase,
bool IsCommunityOnly,
string LoginProvider,
IEnumerable<TimelineItem> Timeline,
IEnumerable<FeaturedCategoryDto> FeaturedCategories,
IEnumerable<WinnerPreviewDto> WinnersPreview,
PublicSiteContentDto SiteContent,
IEnumerable<FaqItemDto> Faq);