From b840eb00bfb877412251d909cd38317286646f65 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Fri, 14 Feb 2020 13:25:00 +0100 Subject: [PATCH] #15: add IGBaseObject --- GBase.Api/GBase.Api.xml | 12 ++++++++++++ GBase.Api/IGBaseObject.cs | 19 +++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 GBase.Api/IGBaseObject.cs diff --git a/GBase.Api/GBase.Api.xml b/GBase.Api/GBase.Api.xml index aa58443..8dd3ae8 100644 --- a/GBase.Api/GBase.Api.xml +++ b/GBase.Api/GBase.Api.xml @@ -80,6 +80,18 @@ The for the given Invalid string passed. + + + GBase object that allows conversion from + + + + + + Initialize this from a given + + The given + ServiceContract for the GBaseEntry diff --git a/GBase.Api/IGBaseObject.cs b/GBase.Api/IGBaseObject.cs new file mode 100644 index 0000000..689a8b9 --- /dev/null +++ b/GBase.Api/IGBaseObject.cs @@ -0,0 +1,19 @@ +// Author: Gockner, Simon +// Created: 2020-02-14 +// Copyright(c) 2020 SimonG. All Rights Reserved. + +namespace GBase.Api +{ + /// + /// GBase object that allows conversion from + /// + /// + public interface IGBaseObject + { + /// + /// Initialize this from a given + /// + /// The given + void InitializeFromString(string @string); + } +} \ No newline at end of file