Struct AudioUtil.WaveMetadata

Namespace
SpessaSharp.Utils
Assembly
SpessaSharp.dll
public readonly record struct AudioUtil.WaveMetadata : IEquatable<AudioUtil.WaveMetadata>
Implements
Inherited Members

Constructors

WaveMetadata(string?, string?, string?, string?)

public WaveMetadata(string? Title, string? Artist, string? Album, string? Genre)

Parameters

Title string

The song's title.

Artist string

The song's artist.

Album string

The song's album.

Genre string

The song's genre.

Properties

Album

The song's album.

public string? Album { get; init; }

Property Value

string

Artist

The song's artist.

public string? Artist { get; init; }

Property Value

string

Genre

The song's genre.

public string? Genre { get; init; }

Property Value

string

Title

The song's title.

public string? Title { get; init; }

Property Value

string