mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
9 lines
167 B
C#
9 lines
167 B
C#
using LiteDB;
|
|
|
|
namespace Artemis.Storage.Migrations;
|
|
|
|
public interface IStorageMigration
|
|
{
|
|
int UserVersion { get; }
|
|
void Apply(LiteRepository repository);
|
|
} |