From 7b1cb9ae2a31827c579fbd8ba45033115570744f Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Tue, 4 Feb 2025 23:24:35 +0100 Subject: [PATCH] Implemented the Project model in the library target. --- Library/Sources/Public/Models/Project.swift | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Library/Sources/Public/Models/Project.swift diff --git a/Library/Sources/Public/Models/Project.swift b/Library/Sources/Public/Models/Project.swift new file mode 100644 index 0000000..9f34306 --- /dev/null +++ b/Library/Sources/Public/Models/Project.swift @@ -0,0 +1,13 @@ +public struct Project { + + // MARK: Properties + + let name: String + + // MARK: Initialisers + + public init(name: String) { + self.name = name + } + +}