* load embedded song metadata * index song artist and song album * reset all song metadata
11 lines
165 B
C#
11 lines
165 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public enum MetadataKind
|
|
{
|
|
Fallback = 0,
|
|
Sidecar = 1,
|
|
External = 2,
|
|
Embedded = 3
|
|
}
|
|
}
|