refactor(domain): herregistratie reminder lead time to 90 days per S-17 spec (refs #18)

refs #18
This commit is contained in:
not
2026-07-23 12:01:36 +02:00
parent f49cad1900
commit b5085dc978
+3 -3
View File
@@ -115,9 +115,9 @@ public sealed class Registration
// per-catalogus, promote it to policy passed in from the beheer config (S-15).
public static readonly TimeSpan HerregistratieGeldigheid = TimeSpan.FromDays(365 * 5);
/// <summary>How long before the deadline the herregistratie reminder is sent (BIG: ~16 weeks).</summary>
// ponytail: fixed 16-week lead time — calibration knob; same promotion path as HerregistratieGeldigheid.
public static readonly TimeSpan Herinneringstermijn = TimeSpan.FromDays(16 * 7);
/// <summary>How long before the deadline the herregistratie reminder is sent (S-17: 90 days).</summary>
// ponytail: fixed 90-day lead time — calibration knob; same promotion path as HerregistratieGeldigheid.
public static readonly TimeSpan Herinneringstermijn = TimeSpan.FromDays(90);
/// <summary>When the registration was entered in the register, once approved; the start of its
/// herregistratie clock. Null until it is <see cref="RegistrationStatus.Ingeschreven"/>.</summary>