DbLink
The DbLink
class is a simple reference to another object in the database, containing its _id
and Name
.
Properties
Property | Type | Description |
---|---|---|
_id |
string |
The unique identifier of the referenced object. |
Name |
string |
The name of the referenced object. |
Constructors
DbLink()
: Initializes a new instance of theDbLink
class.DbLink(Track t)
: Creates aDbLink
from aTrack
object.DbLink(Album a)
: Creates aDbLink
from anAlbum
object.DbLink(Artist a)
: Creates aDbLink
from anArtist
object.