diff --git a/Projects/Domain/Sources/Entity/Player.swift b/Projects/Domain/Sources/Entity/Player.swift new file mode 100644 index 0000000..4d46812 --- /dev/null +++ b/Projects/Domain/Sources/Entity/Player.swift @@ -0,0 +1,15 @@ +// +// Player.swift +// Domain +// +// Created by 박승찬 on 1/20/24. +// Copyright © 2024 com.pivoters. All rights reserved. +// + +import Foundation + +public struct Player { + public let id: UUID + public var name: String + public var backNumber: Int +}