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; } } }