@@ -1420,14 +1420,48 @@ public override string MusicBrainzReleaseArtistId {
1420
1420
/// or <see langword="null" /> if no value is present.
1421
1421
/// </value>
1422
1422
/// <remarks>
1423
- /// This property is implemented using the "MUSICBRAINZ_TRACKID " item.
1423
+ /// This property is implemented using the "MUSICBRAINZ_RELEASETRACKID " item.
1424
1424
/// http://musicbrainz.org/doc/PicardTagMapping
1425
1425
/// </remarks>
1426
1426
public override string MusicBrainzTrackId {
1427
+ get { return GetItemAsString ( "MUSICBRAINZ_RELEASETRACKID" ) ; }
1428
+ set { SetValue ( "MUSICBRAINZ_RELEASETRACKID" , value ) ; }
1429
+ }
1430
+
1431
+ /// <summary>
1432
+ /// Gets and sets the MusicBrainz RecordingID
1433
+ /// </summary>
1434
+ /// <value>
1435
+ /// A <see cref="string" /> containing the MusicBrainz
1436
+ /// RecordingID for the media described by the current
1437
+ /// instance, or null if no value is present.
1438
+ /// </value>
1439
+ /// <remarks>
1440
+ /// This property is implemented using the "MUSICBRAINZ_TRACKID" frame.
1441
+ /// http://musicbrainz.org/doc/PicardTagMapping
1442
+ /// </remarks>
1443
+ public override string MusicBrainzRecordingId {
1427
1444
get { return GetItemAsString ( "MUSICBRAINZ_TRACKID" ) ; }
1428
1445
set { SetValue ( "MUSICBRAINZ_TRACKID" , value ) ; }
1429
1446
}
1430
1447
1448
+ /// <summary>
1449
+ /// Gets and sets the MusicBrainz WorkID
1450
+ /// </summary>
1451
+ /// <value>
1452
+ /// A <see cref="string" /> containing the MusicBrainz
1453
+ /// WorkID for the media described by the current
1454
+ /// instance, or null if no value is present.
1455
+ /// </value>
1456
+ /// <remarks>
1457
+ /// This property is implemented using the "MUSICBRAINZ_WORKID" frame.
1458
+ /// http://musicbrainz.org/doc/PicardTagMapping
1459
+ /// </remarks>
1460
+ public override string MusicBrainzWorkId {
1461
+ get { return GetItemAsString ( "MUSICBRAINZ_WORKID" ) ; }
1462
+ set { SetValue ( "MUSICBRAINZ_WORKID" , value ) ; }
1463
+ }
1464
+
1431
1465
/// <summary>
1432
1466
/// Gets and sets the MusicBrainz Disc ID of the media
1433
1467
/// represented by the current instance.
0 commit comments