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
TitlestringThe song's title.
ArtiststringThe song's artist.
AlbumstringThe song's album.
GenrestringThe song's genre.
Properties
Album
The song's album.
public string? Album { get; init; }
Property Value
Artist
The song's artist.
public string? Artist { get; init; }
Property Value
Genre
The song's genre.
public string? Genre { get; init; }
Property Value
Title
The song's title.
public string? Title { get; init; }