Implemented the Project model in the library target.

This commit is contained in:
Javier Cicchelli 2025-02-04 23:24:35 +01:00
parent a515747c21
commit 7b1cb9ae2a

View File

@ -0,0 +1,13 @@
public struct Project {
// MARK: Properties
let name: String
// MARK: Initialisers
public init(name: String) {
self.name = name
}
}