2023-09-17 22:13:42 +03:00
|
|
|
package GlobalData.FormsParams;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common.Database.Tables.DBTable;
|
2023-09-17 22:13:42 +03:00
|
|
|
public class MainFormParamsDBTable extends DBTable<Integer, DBMainFormParams> {
|
|
|
|
|
public MainFormParamsDBTable() {
|
|
|
|
|
super(Integer.class, DBMainFormParams.class);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public String getSingleDescription() {
|
|
|
|
|
return "параметры главного окна";
|
|
|
|
|
}
|
|
|
|
|
}
|