Files
no-copy/src/main/java/ru/soune/nocopy/entity/ContentStatus.java
T
vladp 7e2dd4a654
Test Workflow / test (push) Successful in 3s
fix path
2025-12-17 22:37:46 +07:00

21 lines
328 B
Java

package ru.soune.nocopy.entity;
import lombok.Getter;
@Getter
public enum ContentStatus {
PROCESSING("processing"),
COMPLETED("completed"),
ERROR("error");
private final String code;
ContentStatus(String code) {
this.code = code;
}
public String getCode() {
return code;
}
}