2023-11-19 18:49:50 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
|
|
|
|
import Common.Global;
|
|
|
|
|
import TestingSystem.Common.TestingServer;
|
2024-09-16 15:41:43 +03:00
|
|
|
import TestingSystem.DVM.DVMConfiguration.DVMConfiguration;
|
2023-12-06 02:13:55 +03:00
|
|
|
import Visual_DVM_2021.Passes.DeleteServerObjects;
|
2024-09-14 00:18:27 +03:00
|
|
|
public class DeleteConfiguration extends DeleteServerObjects<TestingServer, DVMConfiguration> {
|
2023-11-19 18:49:50 +03:00
|
|
|
public DeleteConfiguration() {
|
2024-09-14 00:18:27 +03:00
|
|
|
super(Global.testingServer, DVMConfiguration.class);
|
2023-11-19 18:49:50 +03:00
|
|
|
}
|
|
|
|
|
}
|