AcoustID.Web.ReleaseGroup.ReleaseGroup C# (CSharp) 메소드

ReleaseGroup() 공개 메소드

Initializes a new instance of the ReleaseGroup class.
public ReleaseGroup ( string id, string title, string type ) : System.Collections.Generic
id string The MusicBrainz ID.
title string The title of the release-group.
type string The type of the release-group.
리턴 System.Collections.Generic
        public ReleaseGroup(string id, string title, string type)
        {
            this.Id = id;
            this.Title = title;
            this.Type = type;

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