namespace AS1024.CommunityDocumentationPage.Models
{
///
///
///
public class BgpCommunity
{
///
/// Community Tag
///
public string CommunityTag { get; set; }
///
/// Type of BGP Community
///
public CommunityType BgpCommunityType { get; set; }
///
/// What the community does
///
public string CommunityDescription { get; set; }
}
public enum CommunityType
{
///
/// 32 bit community
///
Community,
///
/// Extended community with RT
///
ExtendedCommunity,
///
/// Large BGP Community
///
LargeCommunity
}
}