SubscriptionModuleAttribute.cs 401 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Aitex.Core.Util
  7. {
  8. [AttributeUsageAttribute(AttributeTargets.Property)]
  9. public class SubscriptionModuleAttribute : Attribute
  10. {
  11. public string Module { get; set; }
  12. public SubscriptionModuleAttribute(string module)
  13. {
  14. Module = module;
  15. }
  16. }
  17. }