mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-12-14 01:55:46 +00:00
14 lines
292 B
C#
14 lines
292 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Capy64.Configuration;
|
|
|
|
class WebSockets
|
|
{
|
|
public bool Enable { get; set; } = true;
|
|
public int MaxActiveConnections { get; set; } = 5;
|
|
}
|