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