# Enterprise Architecture Structure
```plantuml
@startuml
Product "1"<--"n" Application
Application "1" <-- "n" AppModule
Application "n" <-- "n" Contract
AppModule "n" <-- "n" Server
AppModule "n" <-- "n" Data
AppModule "1" <-- "n" Network
CI "1" <-- "n" AppModule
Releases "1" <-- "n" CI
class Application << (I,#FF77FF) Application >> {
Uygulama Listesi
<i>TFS Applications</i>
}
class Product << (I,#FF77FF) Product >> {
Ürün Listesi
<i>Epic</i>
}
class Contract {
+ Sözleşmeler
..
+ SLA Kuralları
..
+ Destek Hizmetleri Sözleşmesi
}
class Network{
+ INT IN/OUT Bilgileri
..
+ Port Bilgileri
}
class Data {
+ Database Bilgileri
..
+ Kafka Topicleri
}