blob: f9ee44843a55f4822221b872620e85c228673397 [file] [log] [blame]
atraczyk8ce1dee2016-08-25 18:15:07 -04001/***************************************************************************
2 * Copyright (C) 2016 by Savoir-faire Linux *
3 * Author: Jäger Nicolas <nicolas.jager@savoirfairelinux.com> *
4 * Author: Traczyk Andreas <andreas.traczyk@savoirfairelinux.com> *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 **************************************************************************/
19
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040020#pragma once
atraczyk8ce1dee2016-08-25 18:15:07 -040021
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040022using namespace Platform;
23using namespace Windows::UI::Xaml::Data;
24
25namespace RingClientUWP
26{
27public ref class Account sealed : public INotifyPropertyChanged
28{
29public:
atraczyk797fa1a2016-08-31 09:55:53 -040030 Account(String^ name, String^ ringID, String^ accountType, String^ accountID);
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040031
32 virtual event PropertyChangedEventHandler^ PropertyChanged;
33
34 property String^ name_;
35 property String^ ringID_;
atraczyk8ce1dee2016-08-25 18:15:07 -040036 property String^ accountType_;
atraczyk797fa1a2016-08-31 09:55:53 -040037 property String^ accountID_;
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040038
39protected:
40 void NotifyPropertyChanged(String^ propertyName);
41
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040042};
43}
44