root / GES_PAC / Model / SerieAnimal.cs @ e4adf0cc
Historique | Voir | Annoter | Télécharger (393 octets)
1 | 65ad7e66 | Lucas Bihannic | |
---|---|---|---|
2 | namespace GES_PAC.Model |
||
3 | { |
||
4 | public class SerieAnimal |
||
5 | { |
||
6 | public long Id { get; set; } |
||
7 | public int NumeroBoite { get; set; } |
||
8 | public double Poids { get; set; } |
||
9 | public double DatePesee { get; set; } |
||
10 | public string RFID { get; set; } |
||
11 | public List<Mesure> Mesures { get; set; } |
||
12 | public List<Comportement> Comportements { get; set; } |
||
13 | } |
||
14 | } |