mirror of
https://github.com/sphildreth/roadie
synced 2025-03-04 15:17:11 +00:00
11 lines
No EOL
332 B
C#
11 lines
No EOL
332 B
C#
namespace Roadie.Library.MetaData.Audio
|
|
{
|
|
public sealed class AudioMetaDataImage
|
|
{
|
|
public byte[] Data { get; set; }
|
|
public string Description { get; set; }
|
|
public string MimeType { get; set; }
|
|
public AudioMetaDataImageType Type { get; set; }
|
|
public string Url { get; set; }
|
|
}
|
|
} |