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.
1 parent ac049dd commit 3da9fb6Copy full SHA for 3da9fb6
Fossology.Rest.Dotnet.Model/File.cs
@@ -26,7 +26,7 @@ public class File
26
/// Gets or sets the hash.
27
/// </summary>
28
[JsonProperty("hash")]
29
- public Hash Hash{ get; set; }
+ public Hash Hash { get; set; }
30
31
/// <summary>
32
/// Gets or sets the findings.
@@ -38,7 +38,9 @@ public class File
38
/// Gets or sets the SHA256 hash.
39
40
[JsonProperty("uploads")]
41
+#pragma warning disable CA2227 // Collection properties should be read only
42
public List<int> Uploads { get; set; }
43
+#pragma warning restore CA2227 // Collection properties should be read only
44
45
46
/// Gets or sets the message.
0 commit comments