blob: e86212a39a1ecbc2bf3d8dc0009b1c7def913c67 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="MetaData.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>
// An MetaData Class
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services.Encode.Model.Models
{
/// <summary>
/// The meta data.
/// </summary>
public class MetaData
{
private string albumArtist;
/// <summary>
/// Initializes a new instance of the <see cref="MetaData"/> class.
/// </summary>
public MetaData()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="MetaData"/> class.
/// </summary>
/// <param name="metadata">
/// The metadata.
/// </param>
public MetaData(MetaData metadata)
{
if (metadata != null)
{
this.AlbumArtist = metadata.AlbumArtist;
this.Artist = metadata.Artist;
this.Comment = metadata.Comment;
this.Composer = metadata.Composer;
this.Description = metadata.Description;
this.Genre = metadata.Genre;
this.LongDescription = metadata.LongDescription;
this.Name = metadata.Name;
this.ReleaseDate = metadata.ReleaseDate;
}
}
/// <summary>
/// Gets or sets the album artist.
/// </summary>
public string AlbumArtist
{
get
{
return this.albumArtist;
}
set
{
this.albumArtist = value;
}
}
/// <summary>
/// Gets or sets the artist.
/// </summary>
public string Artist { get; set; }
/// <summary>
/// Gets or sets the comment.
/// </summary>
public string Comment { get; set; }
/// <summary>
/// Gets or sets the composer.
/// </summary>
public string Composer { get; set; }
/// <summary>
/// Gets or sets the description.
/// </summary>
public string Description { get; set; }
/// <summary>
/// Gets or sets the genre.
/// </summary>
public string Genre { get; set; }
/// <summary>
/// Gets or sets the long description.
/// </summary>
public string LongDescription { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the release date.
/// </summary>
public string ReleaseDate { get; set; }
}
}
|