ExtensibleAttribute.cs 623 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace FWindSoft.Revit.ExtensibleStorage
  7. {
  8. [AttributeUsage(AttributeTargets.Enum)]
  9. public class StorageFileNameAttribute:Attribute
  10. {
  11. public string Name { get; set; }
  12. }
  13. [AttributeUsage(AttributeTargets.Enum)]
  14. public class StorageSchemeNameAttribute : Attribute
  15. {
  16. public string Name { get; set; }
  17. }
  18. [AttributeUsage(AttributeTargets.Enum)]
  19. public class StorageSchemeGuidAttribute : Attribute
  20. {
  21. public string Guid { get; set; }
  22. }
  23. }