Skip to content

Commit

Permalink
Update PSExtendedLocation based on new SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Ehrich committed Jun 4, 2021
1 parent edb4bae commit d2f8f81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Network/Network/Models/PSExtendedLocation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public PSExtendedLocation()

public PSExtendedLocation(string EdgeZone)
{
var extendedLocation = new ExtendedLocation(EdgeZone);
var extendedLocation = new ExtendedLocation(EdgeZone, ExtendedLocationTypes.EdgeZone);

this.Name = extendedLocation.Name;
this.Type = ExtendedLocation.Type;
this.Type = extendedLocation.Type;
}

public string Name { get; set; }
Expand Down

0 comments on commit d2f8f81

Please sign in to comment.