@ -139,4 +139,26 @@ Rel(web_app, twitter, "Gets tweets from", "HTTPS")

## AUTONUMBER_RELATIONSHIPS()
Automatically prefix your relationships with an auto-incremented index. Useful for complex sequences of events, callbacks, and other unclear relationships
```csharp
@startuml AUTONUMBER_RELATIONSHIPS Sample
!include https://raw.githubusercontent.com/plantuml-stdlib/C4-PlantUML/master/C4_Container.puml
HIDE_STEREOTYPE()
AUTONUMBER_RELATIONSHIPS()
Person(admin, "Administrator")
System_Boundary(c1, 'Sample') {
Container(web_app, "Web Application", "C#, ASP.NET Core 2.1 MVC", "Allows users to compare multiple Twitter timelines")
ContainerDb(db, "Database", "SQL Server", "Stores comparison info")
}
System(twitter, "Twitter")
Rel(admin, web_app, "Uses", "HTTPS")
Rel(web_app, twitter, "Gets tweets from", "HTTPS")
Rel_Right(web_app, db, "Stores", "SQL")
@enduml
```