sicpaconnexions / SICPA_Connexions / Model / Animal.cs @ 03682d21
Historique | Voir | Annoter | Télécharger (362 octets)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
|
7 |
namespace SICPA_Connexions.Model |
8 |
{ |
9 |
public class Animal |
10 |
{ |
11 |
public int Id { get; set; } |
12 |
public string NumRfid { get; set; } |
13 |
|
14 |
public int Poids { get; set; } |
15 |
|
16 |
public Animal() { } |
17 |
|
18 |
} |
19 |
} |