yavsc/Yavsc/src/Settings/SiteSettings.cs

28 lines
877 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2016-05-17 18:22:18 +02:00
namespace Yavsc
{
public class SiteSettings
{
public string Title { get; set; }
public string Slogan { 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; }
public EmailEntry Owner { get; set; }
public EmailEntry Admin { get; set; }
public ThirdPartyFiles UserFiles { get; set; }
}
}