Last active
October 23, 2024 16:58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using Progress.Sitefinity.AspNetCore.ViewComponents; | |
using Progress.Sitefinity.AspNetCore.Widgets.Models.Navigation; | |
using Progress.Sitefinity.AspNetCore.Widgets.Models.Section; | |
using Renderer.ViewComponents; | |
namespace Renderer.ViewModels.TabsSection | |
{ | |
public class TabsSectionViewModel | |
{ | |
public string FirstTabLabel { get; set; } | |
public string FirstTabSectionCss { get; set; } | |
public IList<string> FirstTabSectionProportions { get; set; } | |
public string SecondTabLabel { get; set; } | |
public string SecondTabSectionCss { get; set; } | |
public IList<string> SecondTabSectionProportions { get; set; } | |
public ICompositeViewComponentContext<TabsSectionEntity> Context { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment