attempt to fix diagram display issue

This commit is contained in:
2024-11-20 20:24:33 +01:00
parent 6c5c5c9e9d
commit 6d2f7051ee

View File

@@ -7,6 +7,7 @@ This page shows all models that HopFrame uses.
These are the models used by the various database services. These are the models used by the various database services.
```plantuml ```plantuml
@startuml
set namespaceSeparator none set namespaceSeparator none
namespace HopFrame.Database { namespace HopFrame.Database {
@@ -41,6 +42,7 @@ IPermissionOwner <|-- PermissionGroup
User .. Permission User .. Permission
PermissionGroup .. Permission PermissionGroup .. Permission
@enduml
``` ```
@@ -48,6 +50,7 @@ PermissionGroup .. Permission
These are the models used by the REST API and the Blazor API. These are the models used by the REST API and the Blazor API.
```plantuml ```plantuml
@startuml
namespace HopFrame.Security { namespace HopFrame.Security {
class UserLogin { class UserLogin {
+Email: string +Email: string
@@ -70,6 +73,7 @@ namespace HopFrame.Api {
+Password: string +Password: string
} }
} }
@enduml
``` ```
@@ -77,6 +81,7 @@ namespace HopFrame.Api {
These are the models that correspond to the scheme in the Database These are the models that correspond to the scheme in the Database
```plantuml ```plantuml
@startuml
set namespaceSeparator none set namespaceSeparator none
namespace HopFrame.Database { namespace HopFrame.Database {
@@ -112,4 +117,5 @@ namespace HopFrame.Database {
UserEntry *-- TokenEntry UserEntry *-- TokenEntry
UserEntry *-- PermissionEntry UserEntry *-- PermissionEntry
@enduml
``` ```