We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc9e7a2 commit 70f95d3Copy full SHA for 70f95d3
1 file changed
Projects/Domain/Sources/Base/BaseProfile.swift
@@ -5,7 +5,17 @@
5
// Created by 김민호 on 2/24/25.
6
//
7
8
-public struct BaseProfile: Equatable {
+import Util
9
+
10
+public struct BaseProfile: Equatable, Identifiable, CategoryImage {
11
public let id: Int
- public let url: String
12
+ public let imageURL: String
13
14
+ public init(
15
+ id: Int,
16
+ imageURL: String
17
+ ) {
18
+ self.id = id
19
+ self.imageURL = imageURL
20
+ }
21
}
0 commit comments