// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Net.Http.Headers;
namespace Microsoft.AspNet.Mvc.ApiExplorer
{
///
/// Represents a possible format for the body of a response.
///
public class ApiResponseFormat
{
///
/// The formatter used to output this response.
///
public IOutputFormatter Formatter { get; set; }
///
/// The media type of the response.
///
public MediaTypeHeaderValue MediaType { get; set; }
}
}