android-wrapper/capacitor/src/main/java/com/getcapacitor/ServerPath.java
Pieter Vander Vennet 3f782ddafa
Some checks failed
/ build_android (push) Failing after 2m8s
Add dependency in repo
2025-06-18 12:25:24 +02:00

25 lines
421 B
Java

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;
}
}