Skip to content

Commit

Permalink
♻️ :: [#391] FieldType 옵셔널로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuunseo committed Aug 4, 2024
1 parent dfe06a3 commit b074add
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 45 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import Foundation
public struct SchoolWithClubsEntity: Equatable {
public let clubID: Int
public let clubName: String
public let field: FieldType
public let field: FieldType?

public init(
clubID: Int,
clubName: String,
field: FieldType
field: FieldType?
) {
self.clubID = clubID
self.clubName = clubName
Expand Down

0 comments on commit b074add

Please sign in to comment.