2023-11-19 02:12:44 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2023-09-17 22:13:42 +03:00
|
|
|
import Common.Global;
|
2023-11-19 18:49:50 +03:00
|
|
|
import TestingSystem.Common.TestingServer;
|
2023-11-19 02:12:44 +03:00
|
|
|
import TestingSystem.DVM.Configuration.Configuration;
|
2023-11-19 18:49:50 +03:00
|
|
|
import Visual_DVM_2021.Passes.Server.EditServerObject;
|
|
|
|
|
public class EditConfiguration extends EditServerObject<TestingServer, Configuration> {
|
2023-09-17 22:13:42 +03:00
|
|
|
public EditConfiguration() {
|
2023-11-19 18:49:50 +03:00
|
|
|
super(Global.testingServer, Configuration.class);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|