fixed configs missing types

This commit is contained in:
Alex
2025-01-07 09:19:59 +00:00
parent 8b696945f9
commit 127e023213
13 changed files with 159 additions and 1 deletions
+1
View File
@@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Text.Json.Serialization;
using Core.Models.Common;
using Core.Models.Enums;
namespace Core.Models.Spt.Config;
+1
View File
@@ -1,4 +1,5 @@
using System.Text.Json.Serialization;
using Core.Models.Eft.Game;
namespace Core.Models.Spt.Config;
+1 -1
View File
@@ -42,7 +42,7 @@ public class Gift
/// Optional - supply a trader type to send from, not necessary when sending from SYSTEM or USER
/// </summary>
[JsonPropertyName("trader")]
public Traders? Trader { get; set; }
public string? Trader { get; set; }
[JsonPropertyName("messageText")]
public string MessageText { get; set; }
+1
View File
@@ -1,4 +1,5 @@
using System.Text.Json.Serialization;
using Core.Models.Eft.Common;
namespace Core.Models.Spt.Config;
@@ -1,5 +1,6 @@
using System.Text.Json.Serialization;
using Core.Models.Eft.Common;
using Core.Models.Enums;
namespace Core.Models.Spt.Config;
+1
View File
@@ -1,5 +1,6 @@
using System.Text.Json.Serialization;
using Core.Models.Common;
using Core.Models.Spt.Services;
namespace Core.Models.Spt.Config;
+1
View File
@@ -1,5 +1,6 @@
using System.Text.Json.Serialization;
using Core.Models.Common;
using Core.Models.Enums;
namespace Core.Models.Spt.Config;