| | 1 | | using System.Diagnostics.CodeAnalysis; |
| | 2 | | using Spdx3.Model.Core.Classes; |
| | 3 | | using Spdx3.Model.Core.Enums; |
| | 4 | | using Spdx3.Utility; |
| | 5 | |
|
| | 6 | | namespace Spdx3.Model.Security.Classes; |
| | 7 | |
|
| | 8 | | /// <summary> |
| | 9 | | /// Designates elements as products where the impact of a vulnerability is being investigated. |
| | 10 | | /// See https://spdx.github.io/spdx-spec/v3.0.1/model/Security/Classes/VexUnderInvestigationVulnAssessmentRelationship/ |
| | 11 | | /// </summary> |
| | 12 | | public class VexUnderInvestigationVulnAssessmentRelationship : VexVulnAssessmentRelationship |
| | 13 | | { |
| | 14 | | // protected internal no-parm constructor required for deserialization |
| | 15 | | #pragma warning disable CS8618, CS9264 |
| 1 | 16 | | protected internal VexUnderInvestigationVulnAssessmentRelationship() |
| | 17 | | { |
| 1 | 18 | | } |
| | 19 | | #pragma warning restore CS8618, CS9264 |
| | 20 | |
|
| | 21 | | [SetsRequiredMembers] |
| | 22 | | public VexUnderInvestigationVulnAssessmentRelationship(Catalog catalog, CreationInfo creationInfo, |
| 2 | 23 | | Vulnerability from, List<Element> to) : base(catalog, creationInfo, RelationshipType.underInvestigationFor, |
| 2 | 24 | | from, to) |
| | 25 | | { |
| 2 | 26 | | } |
| | 27 | | } |