using System.Net; namespace InnovEnergy.Lib.WebServer; public record HttpResponse { public ContentType ContentType { get; init; } = ContentType.ApplicationOctetStream; public IEnumerable Headers { get; init; } = Enumerable.Empty(); public IEnumerable Cookies { get; init; } = Enumerable.Empty(); public IEnumerable Content { get; init; } = Enumerable.Empty(); public UInt16 StatusCode { get; init; } = 200; }