11 lines
569 B
C#
11 lines
569 B
C#
namespace Acl.Application;
|
|
|
|
/// <summary>The ZGW default-fill values a beheerder can edit at runtime (S-15b) — the mandatory fields
|
|
/// the ACL stamps on every zaak (ADR-0003). The S-27 catalog-resolution keys (zaaktype identificatie,
|
|
/// informatieobjecttype omschrijving) stay static config: editing them would desync the resolved-URL
|
|
/// cache, and they're catalogus wiring rather than "default fill".</summary>
|
|
public sealed record DefaultFillSettings(
|
|
string Bronorganisatie,
|
|
string VerantwoordelijkeOrganisatie,
|
|
string Vertrouwelijkheidaanduiding);
|