mirror of
https://gitea.tendokyu.moe/beerpsi/Rizu.git
synced 2024-11-24 07:10:15 +01:00
14 lines
323 B
C#
14 lines
323 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Rizu.Core;
|
|||
|
|
|||
|
public class Config
|
|||
|
{
|
|||
|
public bool Enabled;
|
|||
|
public int NetworkTimeout;
|
|||
|
public string FailedImportsFolder;
|
|||
|
public string TachiBaseUrl;
|
|||
|
public string TachiImportEndpoint;
|
|||
|
public Dictionary<string, string> AccessTokens = new();
|
|||
|
}
|