NoDbAttribute.cs 260 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace XYY.Common.Standard.Attributes
  5. {
  6. [AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = false)]
  7. public class NoDbAttribute : Attribute
  8. {
  9. }
  10. }