mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 09:10:45 -05:00
9 lines
216 B
C#
9 lines
216 B
C#
using LootDumpProcessor.Serializers;
|
|
|
|
namespace LootDumpProcessor.Storage.Implementations.File.Serializers;
|
|
|
|
public interface IDataStorageFileSerializer
|
|
{
|
|
string GetExtension();
|
|
ISerializer GetSerializer();
|
|
} |