using ErsatzTV.Application.Configuration; namespace ErsatzTV.Controllers.Api.Requests; /// Library scan cadence. is expressed in hours. public record UpdateScannerSettingsRequest(int LibraryRefreshInterval) { public UpdateLibraryRefreshInterval ToCommand() => new(LibraryRefreshInterval); }