* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
6 lines
213 B
C#
6 lines
213 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Libraries;
|
|
|
|
public record LocalLibraryViewModel(int Id, string Name, LibraryMediaKind MediaKind)
|
|
: LibraryViewModel("Local", Id, Name, MediaKind); |