#nullable enable using ErsatzTV.Application.MediaCollections; namespace ErsatzTV.Controllers.Api.Requests; public record CreatePlaylistGroupRequest(string? Name) { public CreatePlaylistGroup ToCommand() => new(Name ?? string.Empty); }