using AS1024.CommunityDocumentationPage.Models;
namespace AS1024.CommunityDocumentationPage.Interfaces
{
///
/// Abstraction layer on obtaining BGP communities regardless of DCIM system
///
public interface IBgpCommunityDocumentation
{
///
/// Read Only field on what the constructor grabs it's data from
///
string DcimName { get; }
///
/// Gets a list of BGP Communities
///
///
Task GetBgpCommunities();
}
///
///
///
public interface IBgpCommunity
{
///
///
///
string DcimName { get; }
///
///
///
///
Task> GetCommunities();
}
}