namespace Yavsc { public class SiteSettings { public string Title { get; set; } public string Slogan { get; set; } /// /// Conceptually, /// This authorisation server only has this present site as unique audience. /// /// public string Audience { get; set; } /// /// it's a very small company, with one domaine name only, /// so let it be the same as in the Audience field. /// /// public string Authority { get; set; } /// /// Owner's email /// /// public EmailEntry Owner { get; set; } /// /// Administrator's email /// /// public EmailEntry Admin { get; set; } /// /// User's files directory /// /// public ThirdPartyFiles UserFiles { get; set; } public string BusinessName { get; set; } public string Street { get; set; } public string PostalCode { get; set; } public string CountryCode { get; set; } /// /// Specifies the directory where should be /// generated pdf files using pandoc /// /// The temporary directory to use public string TempDir { get; set; } = "Temp"; } }