Files
VisualSapfor/src/_VisualDVM/ComponentsServer/BugReportFile/BugReportFilesDBTable.java

16 lines
423 B
Java
Raw Normal View History

2025-12-23 20:37:19 +03:00
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 "файлы";
}
}