blob: e8d2dec84345801f1cf79a588a8a798013a99dca [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;
Nicolas Jager813cf4d2016-10-06 10:54:46 -040024using namespace Platform::Collections;
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040025
26namespace RingClientUWP
27{
28public ref class Account sealed : public INotifyPropertyChanged
29{
30public:
Nicolas Jager6abfc0d2016-10-21 14:57:47 -040031 Account(String^ name, String^ ringID, String^ accountType, String^ accountID, String^ deviceId, bool upnpState);
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040032
33 virtual event PropertyChangedEventHandler^ PropertyChanged;
34
Nicolas Jager6abfc0d2016-10-21 14:57:47 -040035 property String^ name_
36 {
37 String^ get() {
38 return name__;
39 }
40 void set(String^ value) {
41 name__ = value;
42 PropertyChanged(this, ref new PropertyChangedEventArgs("name_"));
43 }
44 }
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040045 property String^ ringID_;
Nicolas Jagerd0830772016-10-07 08:45:33 -040046 property String^ accountType_; // refacto : create a enum accountType
atraczyk797fa1a2016-08-31 09:55:53 -040047 property String^ accountID_;
Nicolas Jager813cf4d2016-10-06 10:54:46 -040048 property String^ _deviceId;
49 property Windows::Foundation::Collections::IVector<String^>^ _devicesIdList {
50 Windows::Foundation::Collections::IVector<String^>^ get() {
51 return devicesIdList_;
52 }
53 void set(Windows::Foundation::Collections::IVector<String^>^ value) {
54 devicesIdList_ = value;
55 }
Nicolas Jager6abfc0d2016-10-21 14:57:47 -040056 };
57 property bool _upnpState;
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040058
59protected:
60 void NotifyPropertyChanged(String^ propertyName);
61
Nicolas Jager813cf4d2016-10-06 10:54:46 -040062private:
63 Windows::Foundation::Collections::IVector<String^>^ devicesIdList_;
Nicolas Jager6abfc0d2016-10-21 14:57:47 -040064 String^ name__;
Nicolas Jager813cf4d2016-10-06 10:54:46 -040065
Nicolas Jagerbff5fbb2016-08-18 08:58:56 -040066};
67}
68