mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			337 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			337 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #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; }
 | |
|     }
 | |
| }
 |