ProjetPilote.cs 763 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CG67.FicheCollege.Domaine
  5. {
  6. /// <summary>
  7. /// si l'instance existe, c'est que le collège participe ...
  8. /// du coup, seul le libelle sufit.
  9. /// </summary>
  10. [Serializable]
  11. public class ProjetPilote
  12. {
  13. /// <summary>
  14. /// Libellé du projet pilote.
  15. /// </summary>
  16. private string mLibelle;
  17. /// <summary>
  18. /// Obtient ou définit le libellé du projet pilote.
  19. /// </summary>
  20. public string Libelle
  21. {
  22. get { return mLibelle; }
  23. set { mLibelle = value; }
  24. }
  25. public ProjetPilote(string libelle)
  26. {
  27. mLibelle = libelle;
  28. }
  29. }
  30. }