14 lines
206 B
Swift
Raw Normal View History

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