MainDbAttribute.cs 191 B

123456789
  1. namespace ZR.Model
  2. {
  3. [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
  4. public class MainDbAttribute : Attribute
  5. {
  6. }
  7. public interface IMainDbEntity { }
  8. }