Files
SPT-Server-Build/Core/Models/Config/HttpConfig.cs
T
2025-01-06 01:43:58 -05:00

8 lines
172 B
C#

namespace Core.Models.Config;
public class HttpConfig
{
public int Port { get; set; }
public string Ip { get; set; }
public bool LogRequests { get; set; }
}