using WeatherForecast.Models.Abstractions; namespace WeatherForecast.Models.PageSections { public class TitleSectionModel : PageSectionModel { public ImageModel? Image { get; set; } public MenuItemModel? PrimaryLink { get; set; } public MenuItemModel? SecondaryLink { get; set; } } }