forked from beerpsi/Rizu
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();
|
|||
|
}
|