namespace FrontOffice.Main.Utilities.Seo; public sealed class SeoPageMetadata { public required string Title { get; init; } public required string Description { get; init; } public required string CanonicalUrl { get; init; } public string? CrawlableContent { get; init; } public bool NoIndex { get; init; } }