Add EndpointAuth navigation to RecActionView

Added EndpointAuth navigation property to RecActionView with [ForeignKey("EndpointAuthId")], enabling direct access to related authentication data via Entity Framework.
This commit is contained in:
2025-12-12 10:34:26 +01:00
parent 165152b7cf
commit a5aac1d0ec

View File

@@ -33,6 +33,9 @@ public class RecActionView
public long? EndpointAuthId { get; set; }
[ForeignKey("EndpointAuthId")]
public EndpointAuth? EndpointAuth { get; set; }
public string? EndpointAuthType { get; set; }
public string? EndpointAuthApiKey { get; set; }