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