reactredux/webapi/WeatherForecast/Models/PageSections/TitleSectionModel.cs

11 lines
305 B
C#

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; }
}
}