Mercurial > pub > bltoolkit
annotate Source/DataAccess/IdentityAttribute.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
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 } |