Files
ReC/src/ReC.Domain/Entities/RecAction.cs
TekH 030dcf8b58 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.
2025-12-12 01:47:43 +01:00

50 lines
1.1 KiB
C#

namespace ReC.Domain.Entities;
public class RecAction
{
public long? Id { get; set; }
public long? ProfileId { get; set; }
public Profile? Profile { get; set; }
public bool? Active { get; set; }
public byte? Sequence { get; set; }
public long? EndpointId { get; set; }
public Endpoint? Endpoint { get; set; }
public long? EndpointAuthId { get; set; }
public EndpointAuth? EndpointAuth { get; set; }
public short? EndpointParamsId { get; set; }
public short? SqlConnectionId { get; set; }
public Connection? SqlConnection { get; set; }
public string? Type { get; set; }
public string? PreprocessingQuery { get; set; }
public string? HeaderQuery { get; set; }
public string? BodyQuery { get; set; }
public string? PostprocessingQuery { get; set; }
public string? ErrorAction { get; set; }
public string? AddedWho { get; set; }
public DateTime? AddedWhen { get; set; }
public string? ChangedWho { get; set; }
public DateTime? ChangedWhen { get; set; }
public OutRes? OutRes { get; set; }
}