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