Refactor Lifecycles
[platform/core/csapi/tizenfx.git] / Tizen.Applications / Tizen.Applications / Context.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 using System.IO;
7
8 namespace Tizen.Applications
9 {
10     /// <summary>
11     /// 
12     /// </summary>
13     public abstract class Context
14     {
15         /// <summary>
16         /// 
17         /// </summary>
18         public string ApplicationId
19         {
20             get
21             {
22                 throw new NotImplementedException();
23             }
24         }
25
26         /// <summary>
27         /// 
28         /// </summary>
29         public string ApplicationName
30         {
31             get
32             {
33                 throw new NotImplementedException();
34             }
35         }
36
37         /// <summary>
38         /// 
39         /// </summary>
40         public string ApplicationVersion
41         {
42             get
43             {
44                 throw new NotImplementedException();
45             }
46         }
47
48         /// <summary>
49         /// 
50         /// </summary>
51         public IReadOnlyDictionary<string, string> ApplicationPath
52         {
53             get
54             {
55                 throw new NotImplementedException();
56             }
57         }
58     }
59 }