Mercurial > pub > bltoolkit
annotate Source/DataAccess/IdentityAttribute.cs @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 | |
3 namespace BLToolkit.DataAccess | |
4 { | |
5 [Serializable] | |
6 [AttributeUsage( | |
7 AttributeTargets.Field | AttributeTargets.Property | | |
8 AttributeTargets.Class | AttributeTargets.Interface, | |
9 AllowMultiple = true)] | |
10 public class IdentityAttribute : NonUpdatableAttribute | |
11 { | |
12 public IdentityAttribute() : base(true, true, true) | |
13 { | |
14 } | |
15 } | |
16 } |