freeso/TSOClient/FSO.Server.Common/Config/GithubConfig.cs
riperiperi b57ebbd141 Cleanup: Remove most unused usings and MPL per-file licenses
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
2023-11-25 03:45:29 +00:00

16 lines
603 B
C#

namespace FSO.Server.Common.Config
{
public class GithubConfig
{
public string AppName { get; set; } = "FreeSO";
public string User { get; set; } = "riperiperi";
public string Repository { get; set; } = "FreeSO";
public string ClientID { get; set; }
public string ClientSecret { get; set; }
/// <summary>
/// Must be generated by installing the app on your user account. Browse to the /github/ API endpoint when this is null. (yes, on this server)
/// </summary>
public string AccessToken { get; set; }
}
}