// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//============================================================
//
// Class: SatelliteContractVersionAttribute
//
// Purpose: Specifies which version of a satellite assembly
// the ResourceManager should ask for.
//
//===========================================================
using System;
namespace System.Resources
{
//|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple=false)]
public sealed class SatelliteContractVersionAttribute : Attribute
{
//|
public SatelliteContractVersionAttribute(String version);
//|
public String Version { get; }
}
}