Files
no-copy/src/main/java/ru/soune/nocopy/entity/file/ContentStatus.java
T

21 lines
333 B
Java
Raw Normal View History

2026-01-20 03:47:51 +07:00
package ru.soune.nocopy.entity.file;
2025-11-25 23:09:30 +07:00
2025-11-26 15:49:51 +07:00
import lombok.Getter;
@Getter
2025-11-25 23:09:30 +07:00
public enum ContentStatus {
2025-11-26 15:49:51 +07:00
PROCESSING("processing"),
COMPLETED("completed"),
ERROR("error");
private final String code;
ContentStatus(String code) {
this.code = code;
}
public String getCode() {
return code;
}
2025-11-25 23:09:30 +07:00
}