namespace System.ComponentModel.DataAnnotations { /// /// This attribute is used to mark the members of a Type that participate in /// optimistic concurrency checks. /// [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = true)] public sealed class ConcurrencyCheckAttribute : Attribute { } }