Table of Contents

Class IncomeTaxReferenceDataEntry

Namespace
Payetools.ReferenceData.IncomeTax
Assembly
Payetools.ReferenceData.dll

Represents a set of tax bands for a given tax regime for a period, typically a full tax year.

public record IncomeTaxReferenceDataEntry : IApplicableFromTill, IEquatable<IncomeTaxReferenceDataEntry>
Inheritance
IncomeTaxReferenceDataEntry
Implements
Inherited Members

Properties

ApplicableFrom

Gets the start date (i.e., the first full day) for applicability.

public DateOnly ApplicableFrom { get; init; }

Property Value

DateOnly

ApplicableTill

Gets the end date (i.e., the last full day) for applicability.

public DateOnly ApplicableTill { get; init; }

Property Value

DateOnly

TaxEntries

Gets a read-only list of applicable tax bands.

public ImmutableList<IncomeTaxBandEntry> TaxEntries { get; init; }

Property Value

ImmutableList<IncomeTaxBandEntry>