AcoustID.Web.Release.Release C# (CSharp) Method

Release() public method

Initializes a new instance of the Release class.
public Release ( string id, string title, string country, System.DateTime date, int tracks ) : System
id string The MusicBrainz ID.
title string The title of the release.
country string The country of the release.
date System.DateTime The date of the release.
tracks int The track-count of the release.
return System
        public Release(string id, string title, string country, DateTime date, int tracks)
        {
            this.Id = id;
            this.Title = title;
            this.Country = country;
            this.Date = date;
            this.TrackCount = tracks;

            this.Artists = new List<Artist>();
        }