@@ -1291,13 +1291,47 @@ public override string MusicBrainzReleaseArtistId {
1291
1291
/// instance or <see langword="null" /> if no value present.
1292
1292
/// </value>
1293
1293
/// <remarks>
1294
- /// This property is implemented using the "MUSICBRAINZ_TRACKID " field.
1294
+ /// This property is implemented using the "MUSICBRAINZ_RELEASETRACKID " field.
1295
1295
/// </remarks>
1296
1296
public override string MusicBrainzTrackId {
1297
+ get { return GetFirstField ( "MUSICBRAINZ_RELEASETRACKID" ) ; }
1298
+ set { SetField ( "MUSICBRAINZ_RELEASETRACKID" , value ) ; }
1299
+ }
1300
+
1301
+ /// <summary>
1302
+ /// Gets and sets the MusicBrainz Recording ID for the media
1303
+ /// represented by the current instance.
1304
+ /// </summary>
1305
+ /// <value>
1306
+ /// A <see cref="string" /> object containing the MusicBrainz
1307
+ /// RecordingID for the media represented by the current
1308
+ /// instance or <see langword="null" /> if no value present.
1309
+ /// </value>
1310
+ /// <remarks>
1311
+ /// This property is implemented using the "MUSICBRAINZ_TRACKID" field.
1312
+ /// </remarks>
1313
+ public override string MusicBrainzRecordingId {
1297
1314
get { return GetFirstField ( "MUSICBRAINZ_TRACKID" ) ; }
1298
1315
set { SetField ( "MUSICBRAINZ_TRACKID" , value ) ; }
1299
1316
}
1300
1317
1318
+ /// <summary>
1319
+ /// Gets and sets the MusicBrainz Work ID for the media
1320
+ /// represented by the current instance.
1321
+ /// </summary>
1322
+ /// <value>
1323
+ /// A <see cref="string" /> object containing the MusicBrainz
1324
+ /// WorkID for the media represented by the current
1325
+ /// instance or <see langword="null" /> if no value present.
1326
+ /// </value>
1327
+ /// <remarks>
1328
+ /// This property is implemented using the "MUSICBRAINZ_WORKID" field.
1329
+ /// </remarks>
1330
+ public override string MusicBrainzWorkId {
1331
+ get { return GetFirstField ( "MUSICBRAINZ_WORKID" ) ; }
1332
+ set { SetField ( "MUSICBRAINZ_WORKID" , value ) ; }
1333
+ }
1334
+
1301
1335
/// <summary>
1302
1336
/// Gets and sets the MusicBrainz Disc ID for the media
1303
1337
/// represented by the current instance.
0 commit comments