PluralKit/PluralKit.API/ApiConfig.cs

7 lines
112 B
C#
Raw Normal View History

2021-08-27 11:03:47 -04:00
namespace PluralKit.API
2020-08-27 23:35:47 +02:00
{
public class ApiConfig
{
public int Port { get; set; } = 5000;
}
}