BodyQueryResult and HeaderQueryResult were relocated from ReC.Domain.Entities to ReC.Domain.QueryOutput. Updated all references in IRecDbContext and RecDbContext to use the new namespace.
7 lines
117 B
C#
7 lines
117 B
C#
namespace ReC.Domain.QueryOutput;
|
|
|
|
public class HeaderQueryResult
|
|
{
|
|
public string? RawHeader { get; init; }
|
|
}
|