Passage à ASP.NET vNext
This commit is contained in:
parent
ea90fefc31
commit
388b004837
1929 changed files with 104611 additions and 235941 deletions
6
Yavsc/src/Settings/CompanyInfoSettings.cs
Normal file
6
Yavsc/src/Settings/CompanyInfoSettings.cs
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
namespace Yavsc
|
||||
{
|
||||
public class CompanyInfoSettings {
|
||||
public string ApiKey { get; set; }
|
||||
}
|
||||
}
|
||||
10
Yavsc/src/Settings/EmailEntry.cs
Normal file
10
Yavsc/src/Settings/EmailEntry.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
namespace Yavsc
|
||||
{
|
||||
public class EmailEntry
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Address { get; set; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
11
Yavsc/src/Settings/GoogleAuthSettings.cs
Normal file
11
Yavsc/src/Settings/GoogleAuthSettings.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
namespace Yavsc
|
||||
{
|
||||
public class GoogleAuthSettings
|
||||
{
|
||||
public string ApiKey { get; set; }
|
||||
public string ClientSecret { get; set; }
|
||||
public string ClientId { get; set; }
|
||||
public string BrowserApiKey { get; set; }
|
||||
}
|
||||
}
|
||||
8
Yavsc/src/Settings/PayPalSettings.cs
Normal file
8
Yavsc/src/Settings/PayPalSettings.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
namespace Yavsc
|
||||
{
|
||||
public class PayPalSettings {
|
||||
public string Secret { get; set; }
|
||||
public string UserId { get; set; }
|
||||
public string Signature { get; set; }
|
||||
}
|
||||
}
|
||||
15
Yavsc/src/Settings/SiteSettings.cs
Normal file
15
Yavsc/src/Settings/SiteSettings.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
namespace Yavsc
|
||||
{
|
||||
|
||||
public class SiteSettings
|
||||
{
|
||||
public string Title { get; set; }
|
||||
public string Slogan { get; set; }
|
||||
public string Audience { get; set; }
|
||||
public string Authority { get; set; }
|
||||
public EmailEntry Owner { get; set; }
|
||||
public EmailEntry Admin { get; set; }
|
||||
public ThirdPartyFiles UserFiles { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
12
Yavsc/src/Settings/SmtpSettings.cs
Normal file
12
Yavsc/src/Settings/SmtpSettings.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
namespace Yavsc
|
||||
{
|
||||
public class SmtpSettings
|
||||
{
|
||||
public string Host { get; set; }
|
||||
public int Port { get; set; }
|
||||
|
||||
public bool EnableSSL { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
8
Yavsc/src/Settings/ThirdPartyFiles.cs
Normal file
8
Yavsc/src/Settings/ThirdPartyFiles.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
namespace Yavsc
|
||||
{
|
||||
|
||||
public class ThirdPartyFiles {
|
||||
public string RootDir { get; set; }
|
||||
public string Quota { get; set; }
|
||||
}
|
||||
}
|
||||
10
Yavsc/src/Settings/TwilioSettings.cs
Normal file
10
Yavsc/src/Settings/TwilioSettings.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
namespace Yavsc
|
||||
{
|
||||
public class TwilioSettings {
|
||||
public string AccountSID { get; set; }
|
||||
public string Token { get; set; }
|
||||
public string SMSAccountFrom { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue