|
|
@@ -0,0 +1,25 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Text;
|
|
|
+
|
|
|
+namespace CG67.FicheCollege.Domaine
|
|
|
+{
|
|
|
+ public class FichierTravaux
|
|
|
+ {
|
|
|
+ private bool existe;
|
|
|
+
|
|
|
+ public bool Existe
|
|
|
+ {
|
|
|
+ get { return existe; }
|
|
|
+ set { existe = value; }
|
|
|
+ }
|
|
|
+
|
|
|
+ private string nomFichier;
|
|
|
+
|
|
|
+ public string NomFichier
|
|
|
+ {
|
|
|
+ get { return nomFichier; }
|
|
|
+ set { nomFichier = value; }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|