Добавьте файлы проекта.
This commit is contained in:
12
PlaylistShared.Shared/DTO/AddTrackRequest.cs
Normal file
12
PlaylistShared.Shared/DTO/AddTrackRequest.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user