Merge "Multimedia[Player] Update documentation" into devel
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / MetadataExtractor / Synclyrics.cs
1 /// Synchronized Lyrics
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.using System;
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.Multimedia
19 {
20         /// <summary>
21         /// Synchronized lyrics information
22         /// </summary>
23         /// <remarks>
24         /// This class provides properties of the synchronized lyrics information of the given media
25         /// </remarks>
26         public class Synclyrics
27         {
28                 internal Synclyrics(string lyrics, ulong timestamp)
29                 {
30                         Lyrics = lyrics;
31                         Timestamp = timestamp;
32                 }
33                 public readonly string Lyrics;
34                 public readonly ulong Timestamp;
35         }
36 }