All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xyz.erupt.core.query.Order Maven / Gradle / Ivy

There is a newer version: 1.12.17
Show newest version
package xyz.erupt.core.query;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class Order {

    private String properties;

    private Direction direction;

    public enum Direction {
        ASC, DESC
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy