Skip to content

Commit

Permalink
add: Player 엔티티 구현(#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
eemdeeks committed Jan 20, 2024
1 parent 2e9b8e2 commit 81f8030
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Projects/Domain/Sources/Entity/Player.swift
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 81f8030

Please sign in to comment.