mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 10:09:24 +00:00
12 lines
232 B
C#
12 lines
232 B
C#
using Microsoft.AspNetCore.Components;
|
|
using Oqtane.Shared;
|
|
|
|
namespace Oqtane.Skins
|
|
{
|
|
public class SkinObjectBase : ComponentBase
|
|
{
|
|
[CascadingParameter]
|
|
protected PageState PageState { get; set; }
|
|
}
|
|
}
|