oqtane.framework/Oqtane.Client/Skins/ContainerBase.cs
2019-05-04 20:32:08 -04:00

18 lines
402 B
C#

using Microsoft.AspNetCore.Components;
using Oqtane.Shared;
using Oqtane.Models;
namespace Oqtane.Skins
{
public class ContainerBase : ComponentBase, IContainerControl
{
[CascadingParameter]
protected PageState PageState { get; set; }
[CascadingParameter]
protected Module ModuleState { get; set; }
public virtual string Name { get; set; }
}
}