public struct Project { // MARK: Properties let name: String // MARK: Initialisers public init(name: String) { self.name = name } }