| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CG67.FicheCollege.Domaine
- {
- /// <summary>
- /// si l'instance existe, c'est que le collège participe ...
- /// du coup, seul le libelle sufit.
- /// </summary>
- [Serializable]
- public class ProjetPilote
- {
- /// <summary>
- /// Libellé du projet pilote.
- /// </summary>
- private string mLibelle;
- /// <summary>
- /// Obtient ou définit le libellé du projet pilote.
- /// </summary>
- public string Libelle
- {
- get { return mLibelle; }
- set { mLibelle = value; }
- }
-
- public ProjetPilote(string libelle)
- {
- mLibelle = libelle;
- }
- }
- }
|