Mercurial > pub > bltoolkit
annotate Source/DataAccess/IdentityAttribute.cs @ 2:79a04c6442bf
file name case fix
author | cin |
---|---|
date | Fri, 22 Aug 2014 13:41:57 +0400 |
parents | f990fcb411a9 |
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 } |