Skip to content

Instantly share code, notes, and snippets.

@sitefinitySDK
Last active October 23, 2024 16:58
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