11 lines
405 B
Java
11 lines
405 B
Java
|
|
package Visual_DVM_2021.Passes.All;
|
||
|
|
import Common.Global;
|
||
|
|
import TestingSystem.Common.TestingServer;
|
||
|
|
import TestingSystem.DVM.Configuration.Configuration;
|
||
|
|
import Visual_DVM_2021.Passes.Server.DeleteServerObject;
|
||
|
|
public class DeleteConfiguration extends DeleteServerObject<TestingServer, Configuration> {
|
||
|
|
public DeleteConfiguration() {
|
||
|
|
super(Global.testingServer, Configuration.class);
|
||
|
|
}
|
||
|
|
}
|