Skip to content

Commit

Permalink
Add Version property to the ISide
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeliux committed Aug 19, 2023
1 parent c7739cd commit 81a0fab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/ISide.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;

namespace SAPTeam.Zily
{
Expand All @@ -12,6 +13,11 @@ public interface ISide
/// </summary>
string Protocol { get; }

/// <summary>
/// Gets the version of the <see cref="ISide"/>.
/// </summary>
Version Version { get; }

/// <summary>
/// Gets the identifiers of the <see cref="ISide"/>.
/// </summary>
Expand Down
3 changes: 3 additions & 0 deletions src/Side.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ public class Side : ISide
/// <inheritdoc/>
public string Protocol { get; }

/// <inheritdoc/>
public Version Version { get; }

/// <inheritdoc/>
public string[] Identifiers { get; }

Expand Down

0 comments on commit 81a0fab

Please sign in to comment.