Config template for HTTP

This commit is contained in:
Alessandro Proto 2023-01-13 23:48:03 +01:00
parent 5e0183cc1c
commit ecad4df4ad

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Capy64.Configuration;
class HTTP
{
public bool Enable { get; set; } = true;
public string[] Blacklist { get; set; }
public WebSockets WebSockets { get; set; }
}