Baby steps on code refactoring
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using AS1024.CommunityDocumentationPage.Models;
|
||||
|
||||
namespace AS1024.CommunityDocumentationPage.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// Abstraction layer on obtaining BGP communities regardless of DCIM system
|
||||
/// </summary>
|
||||
public interface IBgpCommunityDocumentation
|
||||
{
|
||||
/// <summary>
|
||||
/// Read Only field on what the constructor grabs it's data from
|
||||
/// </summary>
|
||||
string DcimName { get; }
|
||||
/// <summary>
|
||||
/// Gets a list of BGP Communities
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<RouteTargets> GetBgpCommunities();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user