CCF/include/ccf/redirect.h

13 строки
222 B
C++
Исходник Обычный вид История

2024-04-17 10:48:38 +03:00
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the Apache 2.0 License.
#pragma once
#include "ccf/http_status.h"
namespace ccf
{
struct RedirectDetails
{
http_status status;
};
}