mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
9 lines
229 B
C#
9 lines
229 B
C#
namespace Producer.Models.Configuration;
|
|
|
|
public class GithubConfiguration
|
|
{
|
|
public const string SectionName = "GithubSettings";
|
|
public const string Filename = "github.json";
|
|
|
|
public string? PAT { get; set; }
|
|
} |