mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
10 lines
192 B
Swift
10 lines
192 B
Swift
import Foundation
|
|
|
|
public final class UnsentMessageIndicesView {
|
|
public let indices: Set<MessageIndex>
|
|
|
|
init(_ indices: Set<MessageIndex>) {
|
|
self.indices = indices
|
|
}
|
|
}
|