mirror of
https://github.com/sphildreth/roadie
synced 2025-01-09 02:58:45 +00:00
22 lines
618 B
C#
22 lines
618 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Roadie.Library.SearchEngines.MetaData
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class TrackSearchResult : SearchResultBase
|
|||
|
{
|
|||
|
public ArtistSearchResult Artist { get; set; }
|
|||
|
public IEnumerable<string> Artists { get; set; }
|
|||
|
public short? TrackNumber { get; set; }
|
|||
|
public int? Duration { get; set; }
|
|||
|
public string Title { get; set; }
|
|||
|
public string ISRC { get; set; }
|
|||
|
public string TrackType { get; set; }
|
|||
|
|
|||
|
public TrackSearchResult()
|
|||
|
{
|
|||
|
this.Artists = new string[0];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|