servicepoint-tanks/tanks-backend/TanksServer/Models/HostConfiguration.cs
2024-04-28 12:53:18 +02:00

9 lines
200 B
C#

namespace TanksServer.Models;
public class HostConfiguration
{
public bool EnableServicePointDisplay { get; set; } = true;
public int ServicePointDisplayMinFrameTimeMs { get; set; } = 25;
}