Files
ReC/src/ReC.Domain/QueryOutput/HeaderQueryResult.cs
TekH 92e8d9e778 Move query result classes to QueryOutput namespace
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.
2026-01-12 14:11:05 +01:00

7 lines
117 B
C#

namespace ReC.Domain.QueryOutput;
public class HeaderQueryResult
{
public string? RawHeader { get; init; }
}