24 lines
489 B
Swift
24 lines
489 B
Swift
import Foundation
|
|
|
|
public struct FeedItemLabelDep: Decodable, Hashable {
|
|
public let id: String
|
|
public let name: String
|
|
public let color: String
|
|
public let createdAt: Date?
|
|
public let labelDescription: String?
|
|
|
|
public init(
|
|
id: String,
|
|
name: String,
|
|
color: String,
|
|
createdAt: Date?,
|
|
labelDescription: String?
|
|
) {
|
|
self.id = id
|
|
self.name = name
|
|
self.color = color
|
|
self.createdAt = createdAt
|
|
self.labelDescription = labelDescription
|
|
}
|
|
}
|