Skip to content

Commit d18875c

Browse files
committed
Add BgpSettings
1 parent 17bb381 commit d18875c

File tree

1 file changed

+17
-0
lines changed
  • src/ServiceManagement/Network/Commands.Network/Gateway/Model

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Network
8+
{
9+
public class BgpSettings
10+
{
11+
public uint Asn { get; set; }
12+
13+
public string BgpPeeringAddress { get; set; }
14+
15+
public int PeerWeight { get; set; }
16+
}
17+
}

0 commit comments

Comments
 (0)