15 lines
351 B
C#
15 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace iPackage.Core.Web.Models.Settings
|
|
{
|
|
public class SiteSettings
|
|
{
|
|
public JwtSettings JwtSettings { get; set; }
|
|
public string BaseUrl { get; set; }
|
|
public bool Published { get; set; }
|
|
public RootAdmin RootAdmin { get; set; }
|
|
}
|
|
}
|