Files
VisualSapfor/src/_VisualDVM/ComponentsServer/BugReportFile/BugReportFilesDBTable.java
2025-12-23 20:37:19 +03:00

16 lines
423 B
Java

package _VisualDVM.ComponentsServer.BugReportFile;
import Common.Database.Tables.iDBTable;
public class BugReportFilesDBTable extends iDBTable<BugReportFile> {
public BugReportFilesDBTable() {
super(BugReportFile.class);
}
@Override
public String getSingleDescription() {
return "файл";
}
@Override
public String getPluralDescription() {
return "файлы";
}
}