Add ErrorAction property to RecAction and DB mapping

Added the ErrorAction property to the RecAction class for specifying error handling actions. Updated RecDbContext to map this property to the ERROR_ACTION database column.
This commit is contained in:
2025-12-12 01:47:43 +01:00
parent 71411d4027
commit 030dcf8b58
2 changed files with 3 additions and 0 deletions

View File

@@ -36,6 +36,8 @@ public class RecAction
public string? PostprocessingQuery { get; set; }
public string? ErrorAction { get; set; }
public string? AddedWho { get; set; }
public DateTime? AddedWhen { get; set; }