a2ddd7ae17
- Various nullability warnings removed - Made CanConvert on a few of them a bit more strict
9 lines
192 B
C#
9 lines
192 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Utils.Json;
|
|
|
|
public interface IJsonConverterRegistrator
|
|
{
|
|
public IEnumerable<JsonConverter> GetJsonConverters();
|
|
}
|