Add RepoChangeService

This commit is contained in:
Loporrit
2025-07-16 01:24:13 +00:00
parent 7d79dc5475
commit f882fd8b9d
4 changed files with 511 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
using System.Text.Json.Serialization;
namespace MareSynchronos.Services;
public record RepoChangeConfig
{
[JsonPropertyName("current_repo")]
public string? CurrentRepo { get; set; }
[JsonPropertyName("valid_repos")]
public string[]? ValidRepos { get; set; }
}