mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2025-01-11 22:17:46 +00:00
11 lines
158 B
C#
11 lines
158 B
C#
|
using System;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class SavedShow
|
||
|
{
|
||
|
public DateTime AddedAt { get; set; }
|
||
|
public FullShow Show { get; set; }
|
||
|
}
|
||
|
}
|