PluralKit/PluralKit.API/ApiConfig.cs

8 lines
182 B
C#
Raw Normal View History

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