From 0f5d029d9b9bc128eb399384ed0ca32063d4e281 Mon Sep 17 00:00:00 2001 From: CWX Date: Thu, 26 Dec 2024 21:47:43 +0000 Subject: [PATCH] Update Model for Serverconfig --- project/SPT.Common/Http/ServerConfig.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/SPT.Common/Http/ServerConfig.cs b/project/SPT.Common/Http/ServerConfig.cs index cba1de5..4e8900a 100644 --- a/project/SPT.Common/Http/ServerConfig.cs +++ b/project/SPT.Common/Http/ServerConfig.cs @@ -3,12 +3,12 @@ public class ServerConfig { public string BackendUrl { get; } - public string Version { get; } + public string MatchingVersion { get; } - public ServerConfig(string backendUrl, string version) + public ServerConfig(string backendUrl, string matchingVersion) { BackendUrl = backendUrl; - Version = version; + MatchingVersion = matchingVersion; } } }