Skip to content
Permalink
739e072e7d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (26 sloc) 804 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace TeamDBAwesome.Models
{
public class SearchResult
{
public List<Track> Media { get; set; }
public List<Track> Album { get; set; }
public List<Track> Artist { get; set; }
public List<Track> Track { get; set; }
//pretty sure I don't need this
public List<Track> Composer { get; set; }
public List<Track> Genre { get; set; }
public SearchResult()
{
Media = new List<Track>();
Album = new List<Track>();
Artist = new List<Track>();
Track = new List<Track>();
Composer = new List<Track>();
Genre = new List<Track>();
}
}
}