// 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.AspNet.Security.DataHandler.Serializer;
namespace Microsoft.AspNet.Security.Twitter.Messages
{
///
/// Provides access to a request token serializer.
///
public static class Serializers
{
static Serializers()
{
RequestToken = new RequestTokenSerializer();
}
///
/// Gets or sets a statically-avaliable serializer object. The value for this property will be by default.
///
public static IDataSerializer RequestToken { get; private set; }
}
}