blob: e41cd1689d0716faa21e336f79583616bd92f949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="SourceMetadata.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The meta data.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Json.Scan
{
/// <summary>
/// The meta data.
/// </summary>
public class SourceMetadata
{
public string Name { get; set; }
public string Artist { get; set; }
public string Composer { get; set; }
public string Comment { get; set; }
public string Genre { get; set; }
public string Album { get; set; }
public string AlbumArtist { get; set; }
public string Description { get; set; }
public string LongDescription { get; set; }
public string ReleaseDate { get; set; }
}
}
|