Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add event tags #222

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/Be.Vlaanderen.Basisregisters.EventHandling/EventTag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@
{
using System;

public class EventTag

Check warning on line 5 in src/Be.Vlaanderen.Basisregisters.EventHandling/EventTag.cs

View workflow job for this annotation

GitHub Actions / Build

Seal class 'EventTag' or implement 'IEqualityComparer<T>' instead. (https://rules.sonarsource.com/csharp/RSPEC-4035)

Check warning on line 5 in src/Be.Vlaanderen.Basisregisters.EventHandling/EventTag.cs

View workflow job for this annotation

GitHub Actions / Build

Seal class 'EventTag' or implement 'IEqualityComparer<T>' instead. (https://rules.sonarsource.com/csharp/RSPEC-4035)
{
public class For

Check warning on line 7 in src/Be.Vlaanderen.Basisregisters.EventHandling/EventTag.cs

View workflow job for this annotation

GitHub Actions / Build

Add a 'protected' constructor or the 'static' keyword to the class declaration. (https://rules.sonarsource.com/csharp/RSPEC-1118)

Check warning on line 7 in src/Be.Vlaanderen.Basisregisters.EventHandling/EventTag.cs

View workflow job for this annotation

GitHub Actions / Build

Add a 'protected' constructor or the 'static' keyword to the class declaration. (https://rules.sonarsource.com/csharp/RSPEC-1118)
{
public const string Sync = "sync";
public const string Crab = "crab";
public const string Edit = "edit";
public const string Merger = "merger";
public const string Legacy = "legacy";

public const string Municipality = "municipality";
public const string PostalInformation = "postalinformation";
public const string StreetName = "streetname";
public const string Address = "address";
public const string Building = "building";
public const string Parcel = "parcel";
}

private readonly string _tagType;
Expand Down
Loading