package com.reactnativefastshadow;

public class NinePatchInsets {
  public int left;
  public int right;
  public int top;
  public int bottom;

  public NinePatchInsets(int left, int right, int top, int bottom) {
    this.left = left;
    this.right = right;
    this.top = top;
    this.bottom = bottom;
  }
}
