[MediaContent] Deprecate underutilized fields (#5850)
[platform/core/csapi/tizenfx.git] / src / Tizen.Content.MediaContent / Tizen.Content.MediaContent / MediaInfoColumnKey.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 namespace Tizen.Content.MediaContent
18 {
19     /// <summary>
20     /// Specifies the group keys for <see cref="MediaInfo"/>.
21     /// </summary>
22     /// <since_tizen> 4 </since_tizen>
23     public enum MediaInfoColumnKey
24     {
25         /// <summary>
26         /// Display name.
27         /// </summary>
28         DisplayName,
29         /// <summary>
30         /// Media type.
31         /// </summary>
32         Type,
33         /// <summary>
34         /// Mime type.
35         /// </summary>
36         MimeType,
37         /// <summary>
38         /// File size.
39         /// </summary>
40         Size,
41         /// <summary>
42         /// Date added.
43         /// </summary>
44         DateAdded,
45         /// <summary>
46         /// Date modified.
47         /// </summary>
48         DateModified,
49         /// <summary>
50         /// Content title.
51         /// </summary>
52         Title,
53         /// <summary>
54         /// Artist.
55         /// </summary>
56         Artist,
57         /// <summary>
58         /// Album artist.
59         /// </summary>
60         AlbumArtist,
61         /// <summary>
62         /// Genre.
63         /// </summary>
64         Genre,
65         /// <summary>
66         /// Composer.
67         /// </summary>
68         Composer = 10,
69         /// <summary>
70         /// Year.
71         /// </summary>
72         Year,
73         /// <summary>
74         /// Date recorded.
75         /// </summary>
76         DateRecorded,
77         /// <summary>
78         /// Copyright.
79         /// </summary>
80         Copyright,
81         /// <summary>
82         /// Track number.
83         /// </summary>
84         TrackNumber,
85         /// <summary>
86         /// Description.
87         /// </summary>
88         Description,
89         /// <summary>
90         /// Longitude.
91         /// </summary>
92         Longitude,
93         /// <summary>
94         /// Latitude.
95         /// </summary>
96         Latitude,
97         /// <summary>
98         /// Altitude.
99         /// </summary>
100         Altitude,
101         /// <summary>
102         /// Rating.
103         /// </summary>
104         Rating = 20,
105     }
106 }