Migration/nc2/RiverMeadow.NC2NetworkConfiguration/RiverMeadow.NC2NetworkConfiguration.psm1
class RMNC2DestinationNetworkConfiguration { [string] $DestinationNetworkName [string] $AssignmentType [string] $IpAddress RMNC2DestinationNetworkConfiguration([string] $DestinationNetworkName, [string] $AssignmentType) { $this.DestinationNetworkName = $DestinationNetworkName $this.AssignmentType = $AssignmentType $this.IpAddress = "" } RMNC2DestinationNetworkConfiguration([string] $DestinationNetworkName, [string] $AssignmentType, [string] $IpAddress) { $this.DestinationNetworkName = $DestinationNetworkName $this.AssignmentType = $AssignmentType $this.IpAddress = $IpAddress } } |