* load embedded song metadata * index song artist and song album * reset all song metadata
13 lines
338 B
C#
13 lines
338 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class SongMetadata : Metadata
|
|
{
|
|
public string Album { get; set; }
|
|
public string Artist { get; set; }
|
|
public string Date { get; set; }
|
|
public string Track { get; set; }
|
|
public int SongId { get; set; }
|
|
public Song Song { get; set; }
|
|
}
|
|
}
|