21 lines
477 B
C#
21 lines
477 B
C#
// <copyright file="ArtistInfo.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CA1002, CA2227, CS1591
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public class ArtistInfo : ItemLookupInfo
|
|
{
|
|
public ArtistInfo()
|
|
{
|
|
SongInfos = new List<SongInfo>();
|
|
}
|
|
|
|
public List<SongInfo> SongInfos { get; set; }
|
|
}
|
|
}
|