namespace TaxBaik.Application.Seasonal; public record TaxSeason { public string Key { get; init; } = ""; public string Name { get; init; } = ""; public int StartMonth { get; init; } public int StartDay { get; init; } public int EndMonth { get; init; } public int EndDay { get; init; } public string HeroHeadline { get; init; } = ""; public string HeroSubtext { get; init; } = ""; public string UrgencyBadge { get; init; } = ""; public string FocusService { get; init; } = ""; public string CtaText { get; init; } = "상담 신청하기"; /// 블로그 시즌 연동 시 우선 노출할 카테고리 slug (categories.slug 참조) public string RelatedCategorySlug { get; init; } = ""; }