using System.ComponentModel.DataAnnotations.Schema; namespace ReC.Domain.QueryOutput; public class HeaderQueryResult { [Column("REQUEST_HEADER")] public string? RawHeader { get; init; } }