Prechádzať zdrojové kódy

docs: Add facets to class diagram

Michael Bromley 7 rokov pred
rodič
commit
4c361928a1
1 zmenil súbory, kde vykonal 11 pridanie a 1 odobranie
  1. 11 1
      docs/diagrams/full-class-diagram.puml

+ 11 - 1
docs/diagrams/full-class-diagram.puml

@@ -54,6 +54,13 @@ enum AdjustmentType {
 class AdjustmentSource {
     type: AdjustmentType
 }
+class Facet {
+    values: FacetValue[]
+}
+class FacetValue {
+}
+class Category {
+}
 
 Customer o-- User
 Administrator o-- User
@@ -63,6 +70,9 @@ Product o-- ProductVariant
 ProductOptionGroup o-- ProductOption
 Product o-- ProductOptionGroup
 ProductVariant o-- ProductOption
+ProductVariant --- FacetValue
+Facet o-- FacetValue
+Category o-- FacetValue
 Customer o-- Order
 OrderItem - ProductVariant
 Order o-- OrderItem
@@ -73,4 +83,4 @@ Order o-- Adjustment
 Adjustment - AdjustmentType
 AdjustmentSource - AdjustmentType
 
-@enduml
+@enduml