Class NiReferenceDataEntry
- Namespace
- Payetools.ReferenceData.NationalInsurance
- Assembly
- Payetools.ReferenceData.dll
Represents a set of Ni thresholds and rates for a period; where there have been in-year changes, then there may be several such entries for a given tax year.
public class NiReferenceDataEntry : IApplicableFromTill
- Inheritance
-
NiReferenceDataEntry
- 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
BasicRateOfTaxForTaxRelief
Gets the basic rate of tax to be applied for tax relief on employee pension contributions for relief at source pensions.
public decimal BasicRateOfTaxForTaxRelief { get; init; }
Property Value
DirectorEmployeeRates
Gets applicable employee NI rates for directors. Only applicable when there has been an in-year change to National Insurance rates.
public ImmutableList<NiEmployeeRatesEntry>? DirectorEmployeeRates { get; init; }
Property Value
DirectorEmployerRates
Gets applicable employer NI rates for directors. Only applicable when there has been an in-year change to National Insurance rates.
public ImmutableList<NiEmployerRatesEntry>? DirectorEmployerRates { get; init; }
Property Value
EmployeeRates
Gets applicable NI rates for employees.
public ImmutableList<NiEmployeeRatesEntry> EmployeeRates { get; init; }
Property Value
EmployerRates
Gets applicable NI rates for employees.
public ImmutableList<NiEmployerRatesEntry> EmployerRates { get; init; }
Property Value
NiThresholds
Gets a read-only list of applicable NI thresholds.
public ImmutableList<NiReferenceDataThresholdEntry> NiThresholds { get; init; }