PluralKit/PluralKit.API/ApiConfig.cs

8 lines
182 B
C#
Raw Normal View History

namespace PluralKit.API;
public class ApiConfig
2020-08-27 21:35:47 +00:00
{
public int Port { get; set; } = 5000;
2022-04-07 13:26:12 +00:00
public string? ClientId { get; set; }
public string? ClientSecret { get; set; }
2020-08-27 21:35:47 +00:00
}