nouritsu/src/main/java/nouritsu/types/Store.java
2020-07-03 13:05:23 +02:00

10 lines
186 B
Java

package nouritsu.types;
import java.util.List;
/**
* A store with an ordered list of sections from entrance to exit.
*/
public record Store(String name, List<Category> sections) {
}