Statistiques
| Branche: | Révision:

root / GES_PAC / ViewModel / JourneeViewModel.cs @ eac868a1

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

1
using GES_PAC.Model;
2
using System;
3
using System.Collections.Generic;
4
using System.Collections.ObjectModel;
5
using System.Linq;
6
using System.Text;
7
using System.Threading.Tasks;
8

    
9
namespace GES_PAC.ViewModel
10
{
11
    public class JourneeViewModel
12
    {
13
        public ObservableCollection<Journee> Journees { get; set; } = new();
14

    
15
        private static JourneeViewModel _instance;
16
        public static JourneeViewModel Instance => _instance ??= new JourneeViewModel();
17

    
18
        private JourneeViewModel() { }
19
    }
20
}