package its;

import com.facebook.drift.annotations.ThriftDocumentation;
import com.facebook.drift.annotations.ThriftOrder;

@ThriftDocumentation("Type of fruit")
class Fruit$DriftMeta {
  @ThriftDocumentation("Large and sweet")
  @ThriftOrder(10000)
  int APPLE;

  @ThriftDocumentation("Yellow")
  @ThriftOrder(10001)
  int BANANA;

  @ThriftDocumentation("Small and tart")
  @ThriftOrder(10002)
  int CHERRY;
}
