From 81a0fabf70b5c153aba0f61d7537831c0986ad08 Mon Sep 17 00:00:00 2001 From: Alireza Poodineh Date: Sat, 19 Aug 2023 20:28:46 +0330 Subject: [PATCH] Add Version property to the ISide --- src/ISide.cs | 8 +++++++- src/Side.cs | 3 +++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/ISide.cs b/src/ISide.cs index 495595f..9193906 100644 --- a/src/ISide.cs +++ b/src/ISide.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; namespace SAPTeam.Zily { @@ -12,6 +13,11 @@ public interface ISide /// string Protocol { get; } + /// + /// Gets the version of the . + /// + Version Version { get; } + /// /// Gets the identifiers of the . /// diff --git a/src/Side.cs b/src/Side.cs index e2e5410..a6c624e 100644 --- a/src/Side.cs +++ b/src/Side.cs @@ -13,6 +13,9 @@ public class Side : ISide /// public string Protocol { get; } + /// + public Version Version { get; } + /// public string[] Identifiers { get; }