Update code to properly format the AS Tags

This commit is contained in:
2023-06-14 13:07:02 -07:00
parent 7b6794e7e9
commit 9c80ad14f3
6 changed files with 92 additions and 10 deletions

View File

@@ -17,4 +17,19 @@ namespace AS1024.CommunityDocumentationPage.Interfaces
/// <returns></returns>
Task<RouteTargets> GetBgpCommunities();
}
/// <summary>
///
/// </summary>
public interface IBgpCommunity
{
/// <summary>
///
/// </summary>
string DcimName { get; }
/// <summary>
///
/// </summary>
/// <returns></returns>
Task<ICollection<CommunityTag>> GetCommunities();
}
}