Swift -Protokoll -Vererbung

protocol Car {
  ...
}

protocol Brand: Car {
  ...
}
SAMER SAEID