We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RegistryConfig
1 parent 51874b8 commit 7a92a72Copy full SHA for 7a92a72
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DependabotProxy.cs
@@ -13,17 +13,9 @@ public class DependabotProxy : IDisposable
13
/// <summary>
14
/// Represents configurations for package registries.
15
/// </summary>
16
- public struct RegistryConfig
17
- {
18
- /// <summary>
19
- /// The type of package registry.
20
- /// </summary>
21
- public string Type { get; set; }
22
23
- /// The URL of the package registry.
24
25
- public string URL { get; set; }
26
- }
+ /// <param name="Type">The type of package registry.</param>
+ /// <param name="URL">The URL of the package registry.</param>
+ public record class RegistryConfig(string Type, string URL);
27
28
private readonly string host;
29
private readonly string port;
0 commit comments