summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2017-08-30 21:41:29 +0100
committersr55 <[email protected]>2017-08-30 21:41:29 +0100
commit43dc0cdb9d18c43771ca8f9ed52b19550c2c1b55 (patch)
tree4299bfe63faa0a53998ef0922fc10c9dcf2d5b32
parent5d3690d0b58be16a1228984968deb48afd7d1621 (diff)
WinGui: Complete the SourceMetadata object.
-rw-r--r--win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceMetadata.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceMetadata.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceMetadata.cs
index f575dc637..734dfa29a 100644
--- a/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceMetadata.cs
+++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceMetadata.cs
@@ -14,5 +14,14 @@ namespace HandBrake.ApplicationServices.Interop.Json.Scan
/// </summary>
public class SourceMetadata
{
+ public string Artist { get; set; }
+ public string Description { get; set; }
+ public string Genre { get; set; }
+ public string LongDescription { get; set; }
+ public string Name { get; set; }
+ public string ReleaseDate { get; set; }
+ public string Composer { get; set; }
+ public string AlbumArtist { get; set; }
+ public string Comment { get; set; }
}
} \ No newline at end of file