10 lines
305 B
C#
10 lines
305 B
C#
namespace Acl.Application;
|
|
|
|
/// <summary>The fully default-filled zaak the gateway will create in OpenZaak.</summary>
|
|
public sealed record ZaakRequest(
|
|
string Bronorganisatie,
|
|
string VerantwoordelijkeOrganisatie,
|
|
string Vertrouwelijkheidaanduiding,
|
|
Uri Zaaktype,
|
|
DateOnly Startdatum);
|