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
ApplicableTill
Gets the end date (i.e., the last full day) for applicability.
public DateOnly ApplicableTill { get; init; }
Property Value
TaxEntries
Gets a read-only list of applicable tax bands.
public ImmutableList<IncomeTaxBandEntry> TaxEntries { get; init; }