CustomAttributeUsage.cs 357 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace DapperORMCore.Dapper
  7. {
  8. [AttributeUsage(AttributeTargets.Property)]
  9. public class DapperKey : Attribute
  10. {
  11. }
  12. [AttributeUsage(AttributeTargets.Property)]
  13. public class DapperIgnore : Attribute
  14. {
  15. }
  16. }