mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
12 lines
174 B
C#
12 lines
174 B
C#
using System;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class SavedTrack
|
|
{
|
|
public DateTime AddedAt { get; set; }
|
|
public FullTrack Track { get; set; } = default!;
|
|
}
|
|
}
|
|
|