Passage à ASP.NET vNext

This commit is contained in:
Paul Schneider 2016-05-17 18:22:18 +02:00
commit 388b004837
1929 changed files with 104611 additions and 235941 deletions

View file

@ -0,0 +1,6 @@
namespace Yavsc
{
public class CompanyInfoSettings {
public string ApiKey { get; set; }
}
}

View file

@ -0,0 +1,10 @@
namespace Yavsc
{
public class EmailEntry
{
public string Name { get; set; }
public string Address { get; set; }
}
}

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

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

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

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

View file

@ -0,0 +1,8 @@
namespace Yavsc
{
public class ThirdPartyFiles {
public string RootDir { get; set; }
public string Quota { get; set; }
}
}

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