Guest User

Untitled

a guest
Jun 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. [MetadataAttribute]
  2. public class Plugin : InheritedExport
  3. {
  4. public Plugin() :
  5. base(typeof(IPlugin))
  6. {
  7. }
  8.  
  9. public string Category {get;set;}
  10. public string Name {get;set;]
  11. }
  12.  
  13. [Plugin] //exports IPlugin
  14. public class BasePart : IPlugin {
  15. }
  16.  
  17. [Plugin(Category="SomeCategory", Name="DerivedPart"]
  18. public class DerivedPart : BasePart {
  19. }
Add Comment
Please, Sign In to add comment