10 lines
208 B
C#
10 lines
208 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace PlaylistShared.Shared.DTO;
|
|
|
|
public class RemoveTracksRequest
|
|
{
|
|
[JsonPropertyName("trackIds")]
|
|
public List<string> TrackIds { get; set; } = new();
|
|
}
|