Last active
December 24, 2021 05:02
-
-
Save syntax-tm/a61b1221e55e16650fda5395c512612c to your computer and use it in GitHub Desktop.
SAM Project Diagram
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"theme": "default" | |
} |
Author
syntax-tm
commented
Dec 24, 2021
•
Edit
|
View
|
---|
%%{
init: {
'theme': 'base',
'themeVariables':
{
'darkMode': true,
'primaryColor': '#1a1a1a',
'nodeBorder': '#555',
'clusterBkg': '#673AB7',
'clusterBorder': '#111',
'defaultLinkColor': '#fff',
'titleColor': '#fff',
'edgeLabelBackground': '#fff',
'nodeTextColor': '#fff'
}
}
}%%
flowchart LR
subgraph apps[WPF Projects]
direction LR
Picker
Manager
end
subgraph Picker
direction LR
A(SAM.WPF)
end
subgraph Manager
direction LR
B(SAM.WPF.Manager)
end
subgraph Core[Reference]
direction LR
C[SAM.WPF.Core]
end
subgraph API[Reference]
direction LR
D{{fa:fa-steam SAM.API}}
end
apps---Core
Core---API
class Picker picker;
class Manager manager;
class Core core;
class API api;
class A a;
class B b;
class C c;
class D d;
classDef picker fill:#5677FC;
classDef manager fill:#5677FC;
classDef core fill:#673ab7;
classDef api fill:#4527a0;
classDef fa:fa-steam fill:#fff;
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment