From a949f786f885f2270cb138859348a1e48c71d556 Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 13 Nov 2020 13:19:56 +0100 Subject: [PATCH] - add initialize() method to IGBaseObject --- GBase.Api/IGBaseObject.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GBase.Api/IGBaseObject.cs b/GBase.Api/IGBaseObject.cs index 01c6e28..67d6483 100644 --- a/GBase.Api/IGBaseObject.cs +++ b/GBase.Api/IGBaseObject.cs @@ -2,6 +2,8 @@ // Created: 2020-02-14 // Copyright(c) 2020 SimonG. All Rights Reserved. +using System.Collections.Generic; + namespace GBase.Api { /// @@ -14,5 +16,7 @@ namespace GBase.Api /// /// The given void InitializeFromString(string @string); + + void Initialize(List parameters); } } \ No newline at end of file