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();
|
|||
|
}
|
|||
|
}
|