1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Configuration/PiwikConfig.cs

25 lines
496 B
C#

namespace Teknik.Configuration
{
public class PiwikConfig
{
public bool Enabled { get; set; }
public string Url { get; set; }
public string API { get; set; }
public int SiteId { get; set; }
public string TokenAuth { get; set; }
public PiwikConfig()
{
Enabled = false;
Url = string.Empty;
API = string.Empty;
SiteId = 1;
TokenAuth = string.Empty;
}
}
}