1234567891011 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace XYY.Common.Standard.Attributes
- {
- [AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
- public class NoDbAttribute : Attribute
- {
- }
- }
|