Statistiques
| Branche: | Révision:

root / GES_PAC / Model / MesureCalibration.cs @ 0a91fd76

Historique | Voir | Annoter | Télécharger (277 octets)

1 65ad7e66 Lucas Bihannic
2
namespace GES_PAC.Model
3
{
4
    public class MesureCalibration : Mesure
5
    {
6
        public TypeCalibration Type { get; set; }
7
        public String? RefBouteille { get; set; }
8
9
    }
10
11
    public enum TypeCalibration
12
    {
13
        AIR,
14
        METHANE,
15
        MELANGE
16
    }
17
}