zdk.net
BrandingInfo.h
1 //
2 // BrandingInfo.h
3 // ZDK
4 //
5 
6 #ifndef ZDK_NET_BrandingInfo_h
7 #define ZDK_NET_BrandingInfo_h
8 
9 #include "native_shared_ptr.h"
10 #include "PublicInterfaces.h"
11 #include "ZHandle.h"
12 
13 using namespace System::Collections::Generic;
14 
15 namespace ZDK_NET
16 {
17 
18  public ref class BrandingInfo : ZHandle
19  {
20  public:
21  ZDK::IBrandingInfo* cppRef = nullptr;
22 
23  BrandingInfo(ZDK::Shared::BrandingInfo src);
24  ~BrandingInfo();
25  !BrandingInfo();
26 
27  property System::String^ CallNavigationPage
28  {
29  System::String^ get();
30  void set(System::String^ value);
31  }
32 
33  property System::String^ ServiceName
34  {
35  System::String^ get();
36  void set(System::String^ value);
37  }
38 
39  property System::String^ DefaultContactImage
40  {
41  System::String^ get();
42  void set(System::String^ value);
43  }
44 
45  property System::String^ BrandingImage
46  {
47  System::String^ get();
48  void set(System::String^ value);
49  }
50 
51  property System::String^ Ringtone
52  {
53  System::String^ get();
54  void set(System::String^ value);
55  }
56 
57  virtual long long Handle() override;
58 
59  virtual void Initialize() override;
60 
61  virtual void ReleaseReference() override;
62 
63  };
64 }
65 
66 #endif
ZDK_NET::BrandingInfo
Definition: BrandingInfo.h:19
ZDK_NET::ZHandle
Definition: ZHandle.h:18