From 299300794b8cf7dee680ea9612e0a26e9e4db24d Mon Sep 17 00:00:00 2001 From: baegteun Date: Mon, 25 Nov 2024 23:38:00 +0900 Subject: [PATCH] Remark to TODO: Remark Co-authored-by: Youngkyu Song --- .../UserDomain/Interface/Entity/FavoriteSongEntity.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Domains/UserDomain/Interface/Entity/FavoriteSongEntity.swift b/Projects/Domains/UserDomain/Interface/Entity/FavoriteSongEntity.swift index e81933889..e87d85bd5 100644 --- a/Projects/Domains/UserDomain/Interface/Entity/FavoriteSongEntity.swift +++ b/Projects/Domains/UserDomain/Interface/Entity/FavoriteSongEntity.swift @@ -1,7 +1,7 @@ import Foundation import SongsDomainInterface -/// concurrency를 위한 Model의 Mutable 제거 필요 +// TODO: concurrency를 위한 Model의 Mutable 제거 필요 public struct FavoriteSongEntity: Equatable, @unchecked Sendable { public init(songID: String, title: String, artist: String, like: Int) { self.songID = songID