24 #nullable enable flips across ErsatzTV.Core/Api; Collection/Schedule/ SmartCollection/Resolution VMs wrapped in ResponseModels (Version now header-only, SPA-verified); pageNum threaded into GET /api/search. Refs #288 #197 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
288 B
C#
13 lines
288 B
C#
#nullable enable
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Api.MediaSources;
|
|
|
|
public record LocalLibraryDetailResponseModel(
|
|
int Id,
|
|
string Name,
|
|
LibraryMediaKind MediaKind,
|
|
bool IsLocked,
|
|
int MediaItemCount,
|
|
List<LocalLibraryPathResponseModel> Paths);
|