using System; namespace Abp.EntityHistory { /// /// This attribute is used to set the description for a single method or /// all methods of a class or interface. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class UseCaseAttribute : Attribute { public string Description { get; set; } } }