[Media Content]Implementation. Review Comments added.
[platform/core/csapi/media-content.git] / Tizen.Content / Tizen.Content.MediaContent / CreateThumbnailResult.cs
1 /// This File contains the Api's related to the CreateThumbnailResult class
2 ///
3 /// Copyright 2016 by Samsung Electronics, Inc.,
4 ///
5 /// This software is the confidential and proprietary information
6 /// of Samsung Electronics, Inc.("Confidential Information"). You
7 /// shall not disclose such Confidential Information and shall use
8 /// it only in accordance with the terms of the license agreement
9 /// you entered into with Samsung.
10
11
12 using System;
13 using System.Collections.Generic;
14 using System.Linq;
15 using System.Text;
16 using System.Threading.Tasks;
17
18 namespace Tizen.Content.MediaContent
19 {
20     /// <summary>
21     /// CreateThumbnailResult class API gives the information related to the thumbnail created by CreateThumbnail API</summary>
22     public class CreateThumbnailResult
23     {
24         internal CreateThumbnailResult()
25         {
26             //Empty
27         }
28
29         /// <summary>
30         /// Gives the Result of the opeartion.
31         /// </summary>
32         /// <value>
33         /// It is the Result state of the operation performed.</value>
34         public MediaContentError Result
35         {
36             get;
37             internal set;
38         }
39
40         /// <summary>
41         /// Gives the Path of the thumbnail which is generated.
42         /// </summary>
43         /// <value>
44         /// string path of the thumbnail.</value>
45         public string Path
46         {
47             get;
48             internal set;
49         }
50     }
51 }