move files in dedicated folder

This commit is contained in:
hannes.kuchelmeister
2020-02-18 11:22:01 +01:00
parent 5fe23a3cf4
commit 663076d5ff
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
@startuml
skinparam monochrome true
skinparam SequenceBoxBackgroundColor #ffffff
skinparam ParticipantPadding 5
skinparam shadowing false
hide footbox
title Preferences
activate M.Customer
M.Customer -> M.Collab: like/dislike
note left
{
"type": "like"|"dislike",
"data": //String//
}
end note
activate M.Collab
M.Collab -> M.Collab : update preferences
M.Customer <- M.Collab: updated preference state
deactivate M.Collab
note right
{
"type": "preferenceUpdate",
"data": {
"likes": //Array<String>//,
"dislikes": //Array<String>//
}
}
end note
@enduml