sandbox/drawings/appsec_achitecture/domain/aggregates/problem_meta_report.puml

24 lines
No EOL
578 B
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@startuml problem_meta_aggregat
!include ../models/problem.puml
!include ../models/meta.puml
package Domain {
package Aggregates {
struct ProblemMetaReportAggregate {
Problem Problem
Meta Meta
}
ProblemMetaReportAggregate o-- Problem
ProblemMetaReportAggregate o-- Meta
note "Используется при разборе\nотчетов для передачи\nв Issue Processor" as ProblemMetaReportAggregateNote
ProblemMetaReportAggregateNote -- ProblemMetaReportAggregate
}
}
@enduml