Class ReuseCombinedEntry
Represents a combined view of REUSE metadata after merging multiple file entries.
public record ReuseCombinedEntry : IEquatable<ReuseCombinedEntry>
- Inheritance
-
ReuseCombinedEntry
- Implements
- Inherited Members
Constructors
ReuseCombinedEntry(ImmutableArray<string>, ImmutableArray<string>)
Represents a combined view of REUSE metadata after merging multiple file entries.
public ReuseCombinedEntry(ImmutableArray<string> LicenseIdentifiers, ImmutableArray<string> CopyrightStatements)
Parameters
LicenseIdentifiers
ImmutableArray<string>De-duplicated SPDX license identifiers in their combined order.
CopyrightStatements
ImmutableArray<string>De-duplicated copyright statements in their combined order.
Properties
CopyrightStatements
De-duplicated copyright statements in their combined order.
public ImmutableArray<string> CopyrightStatements { get; init; }
Property Value
LicenseIdentifiers
De-duplicated SPDX license identifiers in their combined order.
public ImmutableArray<string> LicenseIdentifiers { get; init; }