mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
38 lines
No EOL
1.1 KiB
C#
38 lines
No EOL
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Roadie.Library.SearchEngines.MetaData
|
|
{
|
|
public abstract class SearchResultBase
|
|
{
|
|
private string _RoadieId = null;
|
|
|
|
public ICollection<string> AlternateNames { get; set; }
|
|
public string AmgId { get; set; }
|
|
public string Bio { get; set; }
|
|
public string DiscogsId { get; set; }
|
|
public ICollection<string> ImageUrls { get; set; }
|
|
public ICollection<string> IPIs { get; set; }
|
|
public ICollection<string> ISNIs { get; set; }
|
|
public string iTunesId { get; set; }
|
|
public string LastFMId { get; set; }
|
|
public string MusicBrainzId { get; set; }
|
|
public string Profile { get; set; }
|
|
|
|
public string RoadieId
|
|
{
|
|
get
|
|
{
|
|
return this._RoadieId ?? (this._RoadieId = Guid.NewGuid().ToString());
|
|
}
|
|
set
|
|
{
|
|
this._RoadieId = value;
|
|
}
|
|
}
|
|
|
|
public string SpotifyId { get; set; }
|
|
public ICollection<string> Tags { get; set; }
|
|
public ICollection<string> Urls { get; set; }
|
|
}
|
|
} |