namespace ROLAC.API.Entities;
/// Shared 1099 constants. Box codes match Form1099Box.BoxCode seed values.
public static class Form1099
{
/// IRS reporting threshold (USD) per box, per recipient, per calendar year.
public const decimal ReportingThreshold = 600m;
public const string BoxNec1 = "NEC-1"; // Nonemployee compensation
public const string BoxMisc1 = "MISC-1"; // Rents
public static class W9Status
{
public const string Missing = "Missing";
public const string Requested = "Requested";
public const string OnFile = "OnFile";
public const string Expired = "Expired";
public static readonly IReadOnlyList All = [Missing, Requested, OnFile, Expired];
}
}