changed classes to records

This commit is contained in:
Alex
2025-01-17 18:13:37 +00:00
parent 7d9afa3cb4
commit c94408c596
322 changed files with 1201 additions and 1201 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
namespace Core.Models.Spt.Config;
public class HttpConfig : BaseConfig
public record HttpConfig : BaseConfig
{
[JsonPropertyName("kind")]
public string Kind { get; set; } = "spt-http";
@@ -36,4 +36,4 @@ public class HttpConfig : BaseConfig
/// </summary>
[JsonPropertyName("serverImagePathOverride")]
public Dictionary<string, string> ServerImagePathOverride { get; set; }
}
}