mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
9 lines
212 B
Swift
9 lines
212 B
Swift
public struct PixelDimensions : Equatable {
|
|
public let width: Int32
|
|
public let height: Int32
|
|
public init(width: Int32, height: Int32) {
|
|
self.width = width
|
|
self.height = height
|
|
}
|
|
}
|