Classes/Public/TMSessionDataCache.ps1
class TMSessionDataCache { #region Non-Static Properties [PSCustomObject]$FieldSpecs [PSCustomObject]$FieldSpecsLabelToFieldMap [PSCustomObject]$FieldSpecsFieldToLabelMap #endregion Static Properties #region Constructors TMSessionDataCache() { $this.FieldSpecs = [PSCustomObject]@{} $this.FieldSpecsLabelToFieldMap = [PSCustomObject]@{} $this.FieldSpecsFieldToLabelMap = [PSCustomObject]@{} } #endregion Constructors } |