Statistiques
| Branche: | Révision:

root / GES_PAC / Model / Comportement.cs @ 18f910c6

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

1 65ad7e66 Lucas Bihannic
2
namespace GES_PAC.Model
3
{
4
    public class Comportement
5
    {
6
        public long Id { get; set; }
7
        public DateTime Time { get; set; }
8
        public TypeComportement Type { get; set; }
9
        public string? Commentaire { get; set; }
10
    }
11
12
    public enum TypeComportement
13
    {
14
        SUFFOCATION,
15
        AGITATION,
16
        HYPERTENSION,
17
        HYPOGLYCEMIE,
18
        HYPERGLYCEMIE,
19
        AUTRE
20
    }
21
}