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; }