root / GES_PAC / Model / Comportement.cs @ 957b1f34
Historique | Voir | Annoter | Télécharger (602 octets)
1 |
|
---|---|
2 |
namespace GES_PAC.Model |
3 |
{ |
4 |
public class Comportement |
5 |
{ |
6 |
private DateTime date; |
7 |
private TypeComportement selectedType; |
8 |
private string description; |
9 |
|
10 |
public Comportement(DateTime date, TypeComportement selectedType, string description) |
11 |
{ |
12 |
this.date = date; |
13 |
this.selectedType = selectedType; |
14 |
this.description = description; |
15 |
} |
16 |
|
17 |
public long Id { get; set; } |
18 |
public DateTime Time { get; set; } |
19 |
public TypeComportement? Type { get; set; } |
20 |
public string? Commentaire { get; set; } |
21 |
} |
22 |
} |