blob: 8458f49eb021027011cbce53b207dd59dec19b8d (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.Web.Http.ContentNegotiation
{
public class ConnegItem
{
public string Name { get; set; }
public int Age { get; set; }
}
}
|