The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
496 B
25 lines
496 B
4 years ago
|
namespace Teknik.Configuration
|
||
6 years ago
|
{
|
||
|
public class PiwikConfig
|
||
|
{
|
||
|
public bool Enabled { get; set; }
|
||
|
|
||
|
public string Url { get; set; }
|
||
|
|
||
5 years ago
|
public string API { get; set; }
|
||
|
|
||
6 years ago
|
public int SiteId { get; set; }
|
||
|
|
||
6 years ago
|
public string TokenAuth { get; set; }
|
||
|
|
||
6 years ago
|
public PiwikConfig()
|
||
|
{
|
||
|
Enabled = false;
|
||
|
Url = string.Empty;
|
||
5 years ago
|
API = string.Empty;
|
||
6 years ago
|
SiteId = 1;
|
||
6 years ago
|
TokenAuth = string.Empty;
|
||
6 years ago
|
}
|
||
|
}
|
||
|
}
|