Added support for per site options and OpenID Connect
This commit is contained in:
21
Oqtane.Shared/Interfaces/IAlias.cs
Normal file
21
Oqtane.Shared/Interfaces/IAlias.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
public interface IAlias
|
||||
{
|
||||
int AliasId { get; set; }
|
||||
string Name { get; set; }
|
||||
int TenantId { get; set; }
|
||||
int SiteId { get; set; }
|
||||
bool IsDefault { get; set; }
|
||||
string CreatedBy { get; set; }
|
||||
DateTime CreatedOn { get; set; }
|
||||
string ModifiedBy { get; set; }
|
||||
DateTime ModifiedOn { get; set; }
|
||||
string Path { get; }
|
||||
string SiteKey { get; }
|
||||
Dictionary<string, string> SiteSettings { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user