mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
348 B
15 lines
348 B
using Newtonsoft.Json; |
|
|
|
namespace ErsatzTV.Infrastructure.Trakt.Models; |
|
|
|
public class TraktListResponse |
|
{ |
|
public string Name { get; set; } |
|
public string Description { get; set; } |
|
|
|
[JsonProperty("item_count")] |
|
public int ItemCount { get; set; } |
|
|
|
public TraktListIds Ids { get; set; } |
|
public TraktUser User { get; set; } |
|
}
|
|
|