You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/TrashLib/Config/Settings/SettingsValues.cs

12 lines
251 B

namespace TrashLib.Config.Settings;
public record TrashRepository
{
public string CloneUrl { get; init; } = "https://github.com/TRaSH-/Guides.git";
}
public record SettingsValues
{
public TrashRepository Repository { get; init; } = new();
}