reactredux/webapi/WeatherForecast/Models/Responses/GetStaticContentResponseModel.cs

20 lines
660 B
C#

using Core.Abstractions.Models;
using WeatherForecast.Models.Pages;
namespace WeatherForecast.Models.Responses {
public class GetStaticContentResponseModel : ResponseModel {
public string SiteName { get; set; }
public List<RouteModel> Routes { get; set; }
public List<RouteModel> AdminRoutes { get; set; }
public List<RouteModel> ServiceRoutes { get; set; }
public List<MenuItemModel> TopMenu { get; set; }
public List<MenuItemModel> SideMenu { get; set; }
public HomePageModel HomePage { get; set; }
public ShopCatalogPageModel ShopCatalog { get; set; }
public BlogCatalogPageModel BlogCatalog { get; set; }
}
}