nouritsu/src/main/java/nouritsu/types/Store.java

10 lines
186 B
Java
Raw Normal View History

2020-07-03 13:05:23 +02:00
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) {
}