14 lines
185 B
Swift
14 lines
185 B
Swift
public struct Project {
|
|
|
|
// MARK: Properties
|
|
|
|
let name: String
|
|
|
|
// MARK: Initialisers
|
|
|
|
public init(name: String) {
|
|
self.name = name
|
|
}
|
|
|
|
}
|