mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-19 02:54:22 +00:00
12 lines
217 B
C#
12 lines
217 B
C#
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Shared
|
|
{
|
|
// this class is used for passing state between Blazor components and Services
|
|
public class SiteState
|
|
{
|
|
public Alias Alias { get; set; }
|
|
|
|
}
|
|
}
|