namespace WeatherForecast.Models.Abstractions { public abstract class PageSectionModel { public string? Title { get; set; } public string? Text { get; set; } } }