12 lines
311 B
C#
12 lines
311 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace PlaylistShared.Shared.DTO;
|
|
|
|
public class AddTrackRequest
|
|
{
|
|
[JsonPropertyName("sharedPlaylistToken")]
|
|
public string SharedPlaylistToken { get; set; } = null!;
|
|
|
|
[JsonPropertyName("trackIds")]
|
|
public List<string> TrackIds { get; set; } = new();
|
|
} |