servicepoint-tanks/tanks-backend/TanksServer/Models/HostConfiguration.cs
2024-04-21 14:32:29 +02:00

11 lines
264 B
C#

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