yavsc/Yavsc/Settings/SiteSettings.cs

49 lines
1.6 KiB
C#
Raw Normal View History

2016-05-30 13:53:56 +02:00
namespace Yavsc
2016-05-17 18:22:18 +02:00
{
public class SiteSettings
{
public string Title { get; set; }
public string Slogan { get; set; }
2017-02-21 12:02:12 +01:00
public string Banner { get; set; }
/// <summary>
/// Conceptually,
/// This authorisation server only has this present site as unique audience.
/// </summary>
/// <returns></returns>
2016-05-17 18:22:18 +02:00
public string Audience { get; set; }
/// <summary>
/// it's a very small company, with one domaine name only,
/// so let it be the same as in the Audience field.
/// </summary>
/// <returns></returns>
2016-05-17 18:22:18 +02:00
public string Authority { get; set; }
2016-11-07 19:34:56 +01:00
/// <summary>
/// Owner's email
/// </summary>
/// <returns></returns>
2016-05-17 18:22:18 +02:00
public EmailEntry Owner { get; set; }
2016-11-07 19:34:56 +01:00
/// <summary>
/// Administrator's email
/// </summary>
/// <returns></returns>
2016-05-17 18:22:18 +02:00
public EmailEntry Admin { get; set; }
2016-11-07 19:34:56 +01:00
/// <summary>
/// User's files directory
/// </summary>
/// <returns></returns>
2016-11-10 12:11:39 +01:00
public ThirdPartyFiles UserFiles { get; set; }
2016-05-17 18:22:18 +02:00
public string BusinessName { get; set; }
public string Street { get; set; }
public string PostalCode { get; set; }
public string CountryCode { get; set; }
2016-11-07 19:34:56 +01:00
/// <summary>
/// Specifies the directory where should be
/// generated pdf files using pandoc
/// </summary>
/// <returns>The temporary directory to use</returns>
public string TempDir { get; set; } = "Temp";
2016-05-17 18:22:18 +02:00
}
}