Files
ReC/src/ReC.Domain/Entities/BodyQueryResult.cs.cs
TekH 96fe9c99da Move BodyQueryResult column mapping to Fluent API
Replaced data annotation with Fluent API configuration for BodyQueryResult.RawBody column mapping in RecDbContext, centralizing entity configuration and removing the [Column("REQUEST_BODY")] attribute from the entity class.
2025-12-10 11:05:09 +01:00

6 lines
109 B
C#

namespace ReC.Domain.Entities;
public class BodyQueryResult
{
public string? RawBody { get; init; }
}