Skip to content

Commit

Permalink
feat: add streetname was renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
emalfroy committed Nov 27, 2023
1 parent 0fbc3f6 commit 5d34db4
Showing 1 changed file with 26 additions and 0 deletions.
@@ -0,0 +1,26 @@
namespace Be.Vlaanderen.Basisregisters.GrAr.Contracts.StreetNameRegistry
{
using Common;

public class StreetNameWasRenamed : IQueueMessage
{
public string MunicipalityId { get; }

public int PersistentLocalId { get; }
public int DestinationPersistentLocalId { get; }

public Provenance Provenance { get; }

public StreetNameWasRenamed(
string municipalityId,
int persistentLocalId,
int destinationPersistentLocalId,
Provenance provenance)
{
MunicipalityId = municipalityId;
PersistentLocalId = persistentLocalId;
DestinationPersistentLocalId = destinationPersistentLocalId;
Provenance = provenance;
}
}
}

0 comments on commit 5d34db4

Please sign in to comment.