Public/Classes/DbQueryResult.psm1

# TODO?

# # #Requires -Version 5.0
# $ErrorActionPreference = "Stop";
# Set-StrictMode -Version 'Latest'

# class myColor
# {
# [String] $Color
# [String] $Hex

# myColor([String] $Color, [String] $Hex)
# {
# $this.Color = $Color
# $this.Hex = $Hex
# }

# [String] ToString()
# {
# return $this.Color + ":" + $this.Hex
# }
# }