-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: or-1282 jsonld for beheer zoeken
- Loading branch information
1 parent
7ff6a2e
commit cd8023f
Showing
19 changed files
with
322 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...tionRegistry.Admin.Api/Verenigingen/Search/ResponseModels/GestructureerdeIdentificator.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
namespace AssociationRegistry.Admin.Api.Verenigingen.Search.ResponseModels; | ||
|
||
using System.Runtime.Serialization; | ||
|
||
[DataContract] | ||
public class GestructureerdeIdentificator | ||
{ | ||
/// <summary>De json-ld id</summary> | ||
[DataMember(Name = "@id")] | ||
public string id { get; init; } | ||
|
||
/// <summary>Het json-ld type</summary> | ||
[DataMember(Name = "@type")] | ||
public string type { get; init; } | ||
|
||
/// <summary> | ||
/// De externe identificator van de vereniging in de bron | ||
/// </summary> | ||
[DataMember(Name = "Nummer")] | ||
public string Nummer { get; set; } = null!; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.