Concept Flow - Class declaration syntax
Start
Write 'class' keyword
Name the class
Open curly brace '{'
Declare properties and methods
Close curly brace '}'
Class declared
End
This flow shows the steps to declare a class in Swift: start with the keyword, name it, add properties/methods inside braces, then finish.