Files
no-copy/src/main/java/ru/soune/nocopy/entity/ContentStatus.java
T
vladp a30b0488e8
Test Workflow / test (push) Waiting to run
change package,change message_code
2025-12-10 19:12:54 +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;
}
}