internal/classes/other/FederationProvider.ps1

namespace PSMicrosoftEntraID {
    class FederationProvider {
        [string]$Name
        [string]$Description
        [int]$Priority
        [scriptblock]$Test
        [scriptblock]$Code
        [string]$Assertion
        [string]$Type = 'Custom'

        [string]ToString() {
            return $this.Name
        }
    }
}