Change names not to use the same name for a namespace and a type in that namespace
[platform/core/csapi/tizenfx.git] / src / Tizen.System / Storage / DirectoryType.cs
1 // Copyright 2016 by Samsung Electronics, Inc.,
2 //
3 // This software is the confidential and proprietary information
4 // of Samsung Electronics, Inc. ("Confidential Information"). You
5 // shall not disclose such Confidential Information and shall use
6 // it only in accordance with the terms of the license agreement
7 // you entered into with Samsung.
8
9 namespace Tizen.System
10 {
11     /// <summary>
12     /// Enumeration of the storage directory types.
13     /// </summary>
14     public enum DirectoryType
15     {
16         /// <summary>
17         /// Image directory
18         /// </summary>
19         Images = Interop.Storage.DirectoryType.Images,
20         /// <summary>
21         /// Sounds directory
22         /// </summary>
23         Sounds = Interop.Storage.DirectoryType.Sounds,
24         /// <summary>
25         /// Videos directory
26         /// </summary>
27         Videos = Interop.Storage.DirectoryType.Videos,
28         /// <summary>
29         /// Camera directory
30         /// </summary>
31         Camera = Interop.Storage.DirectoryType.Camera,
32         /// <summary>
33         /// Downloads directory
34         /// </summary>
35         Downloads = Interop.Storage.DirectoryType.Downloads,
36         /// <summary>
37         /// Music directory
38         /// </summary>
39         Music = Interop.Storage.DirectoryType.Music,
40         /// <summary>
41         /// Documents directory
42         /// </summary>
43         Documents = Interop.Storage.DirectoryType.Documents,
44         /// <summary>
45         /// Others directory
46         /// </summary>
47         Others = Interop.Storage.DirectoryType.Others,
48         /// <summary>
49         /// System ringtones directory. Only available for internal storage.
50         /// </summary>
51         Ringtones = Interop.Storage.DirectoryType.Ringtones,
52     }
53 }