mirror of
https://github.com/Readarr/Readarr
synced 2026-02-03 05:14:08 +01:00
* Preliminary Work for Extras for Music * DB Migration for ExtraFiles, Other Cleanup * More Extras Work, Add Album Metadata Type * Update Housekeeps for Music Extras * Fix HouseKeeper and add new Tests * Final round of Cleanup
15 lines
400 B
C#
15 lines
400 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Music;
|
|
|
|
namespace NzbDrone.Core.Organizer
|
|
{
|
|
public class SampleResult
|
|
{
|
|
public string FileName { get; set; }
|
|
public Artist Artist { get; set; }
|
|
public Album Album { get; set; }
|
|
public List<Track> Tracks { get; set; }
|
|
public TrackFile TrackFile { get; set; }
|
|
}
|
|
}
|