root / GES_PAC / ViewModel / PlaceViewModel.cs @ e4adf0cc
Historique | Voir | Annoter | Télécharger (382 octets)
1 |
using GES_PAC.Model; |
---|---|
2 |
using System.Collections.ObjectModel; |
3 |
|
4 |
|
5 |
namespace GES_PAC.ViewModel |
6 |
{ |
7 |
public class PlaceViewModel |
8 |
{ |
9 |
public ObservableCollection<Lieu> Places { get; set; } = new(); |
10 |
|
11 |
private static PlaceViewModel _instance; |
12 |
public static PlaceViewModel Instance => _instance ??= new PlaceViewModel(); |
13 |
|
14 |
private PlaceViewModel() { } |
15 |
} |
16 |
} |