* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
9 lines
240 B
C#
9 lines
240 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);
|
|
} |