android-wrapper/capacitor/src/main/java/com/getcapacitor/ServerPath.java

26 lines
421 B
Java
Raw Normal View History

2025-06-18 12:25:24 +02:00
package com.getcapacitor;
public class ServerPath {
public enum PathType {
BASE_PATH,
ASSET_PATH
}
private final PathType type;
private final String path;
public ServerPath(PathType type, String path) {
this.type = type;
this.path = path;
}
public PathType getType() {
return type;
}
public String getPath() {
return path;
}
}