Swiftgram/submodules/SyncCore/Sources/PixelDimensions.swift
2019-11-01 17:11:12 +04:00

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