8 lines
173 B
C#
8 lines
173 B
C#
namespace Types.Models.Config;
|
|
|
|
public class HttpConfig
|
|
{
|
|
public int Port { get; set; }
|
|
public string Ip { get; set; }
|
|
public bool LogRequests { get; set; }
|
|
} |