Files
omnivore/apple/OmnivoreKit/Sources/Models/DataModels/FeedItemLabelDep.swift
2022-04-21 09:09:26 -07:00

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
}
}