Files
Torch/Torch.API/WebAPI/Plugins/PackageSource.cs

8 lines
224 B
C#

using System.Collections.Generic;
namespace Torch.API.WebAPI.Plugins;
#nullable enable
public record PackageSource
#nullable restore
(string Name, string Url, IReadOnlyList<string> Patterns, PackageSourceType Type);