Swiftgram/TelegramUI/ChatListPresentationData.swift
2018-01-09 13:18:08 +04:00

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
}
}