mocha/dotnet/Libraries/Mocha.OMS/OMSComponents/OMSTabContainerComponent.cs
2023-10-31 11:47:27 -04:00

21 lines
477 B
C#
Executable File

using System;
namespace Mocha.OMS.OMSComponents
{
public class OMSTabContainerComponent
: OMSComponent
{
public class TabPage
{
public class TabPageCollection
: System.Collections.ObjectModel.Collection<TabPage>
{
}
public string Title { get; set; } = String.Empty;
public OMSComponentCollection Components { get; } = new OMSComponentCollection();
}
public TabPage.TabPageCollection TabPages { get; } = new TabPage.TabPageCollection();
}
}