mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
14 lines
382 B
Swift
14 lines
382 B
Swift
import Foundation
|
|
|
|
final class ChatListPresentationData {
|
|
let theme: PresentationTheme
|
|
let strings: PresentationStrings
|
|
let timeFormat: PresentationTimeFormat
|
|
|
|
init(theme: PresentationTheme, strings: PresentationStrings, timeFormat: PresentationTimeFormat) {
|
|
self.theme = theme
|
|
self.strings = strings
|
|
self.timeFormat = timeFormat
|
|
}
|
|
}
|