No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

28 líneas
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. }