/src/Otis/MappingHelperAttribute.cs

http://otis-lib.googlecode.com/ · C# · 13 lines · 11 code · 2 blank · 0 comment · 0 complexity · d1a77b70bfcbb0ac3886c43b76842191 MD5 · raw file

  1. using System;
  2. namespace Otis
  3. {
  4. [AttributeUsage(AttributeTargets.Method)]
  5. public sealed class MappingHelperAttribute : Attribute
  6. {
  7. public MappingHelperAttribute()
  8. {
  9. }
  10. }
  11. }