You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
429 B

  1. using System;
  2. namespace SUISS.Storage
  3. {
  4. [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
  5. public class StorableAlias : Attribute
  6. {
  7. public StorableAlias(string fullName)
  8. {
  9. this._fullName = fullName;
  10. }
  11. public string FullName
  12. {
  13. get
  14. {
  15. return this._fullName;
  16. }
  17. set
  18. {
  19. this._fullName = value;
  20. }
  21. }
  22. private string _fullName;
  23. }
  24. }