AcoustID.Web.Recording.Recording C# (CSharp) Метод

Recording() публичный Метод

Initializes a new instance of the Recording class.
public Recording ( int duration, string id, string title ) : System.Collections.Generic
duration int The duration (in seconds).
id string The MusicBrainz ID.
title string The title of the recording.
Результат System.Collections.Generic
        public Recording(int duration, string id, string title)
        {
            this.Duration = duration;
            this.Id = id;
            this.Title = title;

            this.Artists = new List<Artist>();
            this.ReleaseGroups = new List<ReleaseGroup>();
            this.Releases = new List<Release>();
        }