UseCaseAttribute.cs 386 B

1234567891011121314
  1. using System;
  2. namespace Abp.EntityHistory
  3. {
  4. /// <summary>
  5. /// This attribute is used to set the description for a single method or
  6. /// all methods of a class or interface.
  7. /// </summary>
  8. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
  9. public class UseCaseAttribute : Attribute
  10. {
  11. public string Description { get; set; }
  12. }
  13. }