mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 19:09:56 +00:00
16 lines
355 B
Swift
16 lines
355 B
Swift
import Foundation
|
|
|
|
public protocol OrderedItemListEntryContents: PostboxCoding {
|
|
|
|
}
|
|
|
|
public struct OrderedItemListEntry {
|
|
public let id: MemoryBuffer
|
|
public let contents: OrderedItemListEntryContents
|
|
|
|
public init(id: MemoryBuffer, contents: OrderedItemListEntryContents) {
|
|
self.id = id
|
|
self.contents = contents
|
|
}
|
|
}
|