Statistiques
| Branche: | Révision:

root / GES_PAC / Model / Lieu.cs @ 0a91fd76

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

1 65ad7e66 Lucas Bihannic
2
namespace GES_PAC.Model
3
{
4
    public class Lieu
5
    {
6
        public long Id { get; set; }
7
        public string Nom { get; set; }
8
        public string Client { get; set; }
9
10
        public Lieu(string nom, string client)
11
        {
12
            Nom = nom;
13
            Client = client;
14
        }
15
16
        public override string ToString()
17
        {
18
            return $"{Nom} {Client}";
19
        }
20
    }
21
}