Channel9Downloader.Entities.Categories.Categories C# (CSharp) Method

Categories() public method

Initializes a new instance of the Categories class.
public Categories ( IEnumerable tags, IEnumerable shows, IEnumerable series ) : System.Collections.Generic
tags IEnumerable List of all tags.
shows IEnumerable List of all shows.
series IEnumerable List of all series.
return System.Collections.Generic
        public Categories(IEnumerable<Tag> tags, IEnumerable<Show> shows, IEnumerable<Series> series)
        {
            Tags = new List<Tag>(tags);
            Shows = new List<Show>(shows);
            Series = new List<Series>(series);
        }
Categories