function Get-Colors { | |
param ( | |
[string]$colorsDataString | |
) | |
$colorsJSONData = $colorsDataString | ConvertFrom-Json; | |
[Colors]$colors = [Colors]::new(); | |
$colors.psobject.properties | ForEach-Object { | |
if ($colorsJSONData.($_.Name)) { | |
$colors.($_.Name) = $colorsJSONData.($_.Name) | |
} | |
} | |
return $colors; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment