From f76bfca9b5da808d1dddd0a968e015043f52aed0 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sun, 28 May 2017 01:52:33 +0200 Subject: [PATCH] plan to make it suitable for a truley small business --- Yavsc/Settings/SiteSettings.cs | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/Yavsc/Settings/SiteSettings.cs b/Yavsc/Settings/SiteSettings.cs index c677de7a..98b4ebc8 100644 --- a/Yavsc/Settings/SiteSettings.cs +++ b/Yavsc/Settings/SiteSettings.cs @@ -7,8 +7,8 @@ namespace Yavsc public string Banner { get; set; } /// - /// Conceptually, - /// This authorisation server only has this present site as unique audience. + /// Conceptually, + /// This authorisation server only has this present site as unique audience. /// /// public string Audience { get; set; } @@ -32,18 +32,30 @@ namespace Yavsc /// User's files directory /// /// - public ThirdPartyFiles UserFiles { get; set; } + 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; } + 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 + /// Specifies the directory where should be /// generated pdf files using pandoc /// /// The temporary directory to use public string TempDir { get; set; } = "Temp"; + /// + /// Only one performer will capture payments + /// + /// user capturing payments id + public string OnlyOnePerformerId { get; set; } + + /// + /// Only one activity will be supported + /// + /// the supported activity code + public string OnlyOneActivityCode { get; set; } + } }