mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
12 lines
No EOL
265 B
C#
12 lines
No EOL
265 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Roadie.Library.Models.Playlists
|
|
{
|
|
[Serializable]
|
|
public class PlaylistTrackModifyRequest
|
|
{
|
|
public Guid Id { get; set; }
|
|
public List<PlaylistTrack> Tracks { get; set; }
|
|
}
|
|
} |