2023-09-17 22:13:42 +03:00
|
|
|
package GlobalData.Grid;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common_old.Current;
|
|
|
|
|
import Common.Database.Tables.DBTable;
|
2023-09-17 22:13:42 +03:00
|
|
|
public class GridsDBTable extends DBTable<Current, Grid> {
|
|
|
|
|
public GridsDBTable() {
|
|
|
|
|
super(Current.class, Grid.class);
|
|
|
|
|
}
|
|
|
|
|
}
|