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