IceCubesApp/Packages/Models/Sources/Models/Marker.swift

13 lines
277 B
Swift
Raw Normal View History

import Foundation
public struct Marker: Codable, Sendable {
public struct Content: Codable, Sendable {
public let lastReadId: String
public let version: Int
public let updatedAt: ServerDate
}
2024-02-14 11:48:14 +00:00
public let notifications: Content?
public let home: Content?
}