Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

28 linhas
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. }