mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-07 04:20:49 +00:00
SDK update generated by liblab
This commit is contained in:
14
src/main/java/47/one0/models/Level.java
Normal file
14
src/main/java/47/one0/models/Level.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package 47.one0.models;
|
||||
|
||||
import lombok.AccessLevel;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
|
||||
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
|
||||
public enum Level {
|
||||
V1(1),
|
||||
V2(2),
|
||||
V3(3),
|
||||
V4(4);
|
||||
|
||||
public final Float label;
|
||||
}
|
||||
Reference in New Issue
Block a user