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