mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-18 05:06:41 +00:00
17 lines
604 B
Swift
17 lines
604 B
Swift
import Foundation
|
|
|
|
public struct Conversation: Identifiable, Decodable, Hashable, Equatable {
|
|
public let id: String
|
|
public let unread: Bool
|
|
public let lastStatus: Status
|
|
public let accounts: [Account]
|
|
|
|
public static func placeholder() -> Conversation {
|
|
.init(id: UUID().uuidString, unread: false, lastStatus: .placeholder(), accounts: [.placeholder()])
|
|
}
|
|
|
|
public static func placeholders() -> [Conversation] {
|
|
[.placeholder(), .placeholder(), .placeholder(), .placeholder(), .placeholder(),
|
|
.placeholder(), .placeholder(), .placeholder(), .placeholder(), .placeholder()]
|
|
}
|
|
}
|