servicepoint-tanks/TanksServer/Models/HostConfiguration.cs
2024-04-16 21:35:57 +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;
}