Beispiel #1
0
 public EditorIosImagePickerMovieResult(
     string movieFilePath,
     EditorIosError movieFileError)
 {
     this.MovieFilePath  = movieFilePath;
     this.MovieFileError = movieFileError;
 }
Beispiel #2
0
 public EditorIosImagePickerImageResult(
     Rect cropRect,
     string originalImageFilePath,
     EditorIosError originalImageError,
     string editedImageFilePath,
     EditorIosError editedImageError,
     string imageFilePath,
     EditorIosError imageError)
 {
     this.CropRect = cropRect;
     this.OriginalImageFilePath = originalImageFilePath;
     this.OriginalImageError    = originalImageError;
     this.EditedImageFilePath   = editedImageFilePath;
     this.EditedImageError      = editedImageError;
     this.ImageFilePath         = imageFilePath;
     this.ImageError            = imageError;
 }