github.com/status-im/status-go@v1.1.0/images/cropped_image.go (about)

     1  package images
     2  
     3  type CroppedImage struct {
     4  	ImagePath string `json:"imagePath"`
     5  	X         int    `json:"x"`
     6  	Y         int    `json:"y"`
     7  	Width     int    `json:"width"`
     8  	Height    int    `json:"height"`
     9  }