Files
2022-10-31 13:46:49 +00:00

9 lines
161 B
Java

// "Create constructor" "true-preview"
public enum ReportType {
AGING("Aging"),
;
ReportType(String aging) {
<selection></selection>
}
}