12 lines
278 B
C#
12 lines
278 B
C#
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; }
|
|
} |