public OpcActionConfigurationModel(string endpointUrl, bool useSecurity, TestActionModel testAction)
        {
            EndpointUrl = new Uri(endpointUrl);
            UseSecurity = useSecurity;

            Test = new List <TestActionModel>();
            Test.Add(new TestActionModel(testAction));
        }
 public TestActionModel(TestActionModel action)
 {
     Id       = action.Id;
     Interval = action.Interval;
 }