DescriptionAttribute.cs 323 B

123456789101112131415
  1. using System;
  2. namespace PetaPoco.Tests.Unit
  3. {
  4. [AttributeUsage(AttributeTargets.Method)]
  5. public class DescriptionAttribute : Attribute
  6. {
  7. public string Description { get; set; }
  8. public DescriptionAttribute(string description)
  9. {
  10. Description = description;
  11. }
  12. }
  13. }