mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-01-02 10:43:31 +00:00
9 lines
197 B
C#
9 lines
197 B
C#
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Artemis.Storage.Migrations;
|
|
|
|
public interface IProfileMigration
|
|
{
|
|
int Version { get; }
|
|
void Migrate(JObject configurationJson, JObject profileJson);
|
|
} |