mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 09:50:44 -05:00
14 lines
372 B
C#
14 lines
372 B
C#
![]() |
using LootDumpProcessor.Serializers;
|
|||
|
using LootDumpProcessor.Serializers.Json;
|
|||
|
|
|||
|
namespace LootDumpProcessor.Storage.Implementations.Serializers;
|
|||
|
|
|||
|
public class JsonDataStorageFileSerializer : IDataStorageFileSerializer
|
|||
|
{
|
|||
|
public string GetExtension() => "json";
|
|||
|
|
|||
|
public ISerializer GetSerializer()
|
|||
|
{
|
|||
|
return JsonSerializerFactory.GetInstance();
|
|||
|
}
|
|||
|
}
|