Interface IMusicTrackDefinition
Interface representing the definition of a music track.
Namespace: Serenity.MusicPlayer.Application.Interfaces
Assembly: Serenity.MusicPlayer.Application.dll
Syntax
public interface IMusicTrackDefinition : IFoundationSettings
Properties
Artist
Gets the artist of the music track.
Declaration
string Artist { get; }
Property Value
| Type | Description |
|---|---|
| string | The artist as a string. |
AudioClip
Gets the audio clip of the music track.
Declaration
object AudioClip { get; }
Property Value
| Type | Description |
|---|---|
| object | The audio clip as an object. |
AudioClipPath
Gets the audio clip path of the music track.
Declaration
string AudioClipPath { get; }
Property Value
| Type | Description |
|---|---|
| string | The audio clip path as a string. |
Title
Gets the title of the music track.
Declaration
string Title { get; }
Property Value
| Type | Description |
|---|---|
| string | The title as a string. |