Statistiques
| Branche: | Révision:

root / GES_PAC / Model / Comportement.cs @ 957bebf1

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

1

    
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
        public Comportement(DateTime Time, TypeComportement Type, string Commentaire)
12
        {
13
            this.Time = Time;
14
            this.Type = Type ?? TypeComportement.AUTRE;
15
            this.Commentaire = Commentaire;
16
        }
17
    }
18
}