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<CopyrightNotice>)
Represents a combined view of REUSE metadata after merging multiple file entries.
public ReuseCombinedEntry(ImmutableArray<string> LicenseIdentifiers, ImmutableArray<CopyrightNotice> CopyrightNotices)
Parameters
LicenseIdentifiersImmutableArray<string>Deduplicated SPDX license identifiers in their combined order.
CopyrightNoticesImmutableArray<CopyrightNotice>Deduplicated copyright notices in their combined order.
Properties
CopyrightNotices
Deduplicated copyright notices in their combined order.
public ImmutableArray<CopyrightNotice> CopyrightNotices { get; init; }
Property Value
LicenseIdentifiers
Deduplicated SPDX license identifiers in their combined order.
public ImmutableArray<string> LicenseIdentifiers { get; init; }