Skip to content

Commit

Permalink
♻️ :: [#86] BookInfoEntity / created_at 타입 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
shwaaaa committed Jun 16, 2024
1 parent aea77d5 commit 604e90f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Service/Sources/Domain/BookDomain/Entity/BookInfoEntity.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ public struct BookInfoEntity: Equatable {
public let id: Int
public let title: String
public let plot: String
public let created_at: String
public let created_at: Date

public init(
id: Int,
title: String,
plot: String,
created_at: String
created_at: Date

) {
self.id = id
Expand Down

0 comments on commit 604e90f

Please sign in to comment.