* add actor metadata * show actors in ui * get full movie/show metadata from plex * store actor thumbnail url * rework movie detail page * metadata fixes * rework show detail page * rework artist page * code cleanup
11 lines
263 B
C#
11 lines
263 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Configuration
|
|
{
|
|
internal static class Mapper
|
|
{
|
|
internal static ConfigElementViewModel ProjectToViewModel(ConfigElement element) =>
|
|
new(element.Key, element.Value);
|
|
}
|
|
}
|