Skip to content

Commit 5c906cd

Browse files
author
Will Ehrich
committed
Refactor PSExtendedLocation
1 parent 89a5677 commit 5c906cd

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed
Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1-
using Microsoft.Azure.Management.Network.Models;
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
//
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
//
215

316
namespace Microsoft.Azure.Commands.Network.Models
417
{
18+
using Microsoft.Azure.Management.Network.Models;
19+
520
public class PSExtendedLocation
621
{
722
public PSExtendedLocation()
@@ -10,11 +25,13 @@ public PSExtendedLocation()
1025
public PSExtendedLocation(string EdgeZone)
1126
{
1227
var extendedLocation = new ExtendedLocation(EdgeZone);
28+
1329
this.Name = extendedLocation.Name;
1430
this.Type = ExtendedLocation.Type;
1531
}
1632

1733
public string Name { get; set; }
34+
1835
public string Type { get; set; }
1936
}
2037
}

0 commit comments

Comments
 (0)