// SDLImageResolution.h // #import "SDLRPCMessage.h" NS_ASSUME_NONNULL_BEGIN /** The resolution of an image */ @interface SDLImageResolution : SDLRPCStruct /** Resolution width Required */ @property (strong, nonatomic) NSNumber *resolutionWidth; /** Resolution height Required */ @property (strong, nonatomic) NSNumber *resolutionHeight; /** * Convenience init with all parameters * @param width Resolution width * @param height Resolution height * @return An SDLImageResolution object */ - (instancetype)initWithWidth:(uint16_t)width height:(uint16_t)height; @end NS_ASSUME_NONNULL_END