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.
16 lines
510 B
16 lines
510 B
namespace ErsatzTV.Core.Domain; |
|
|
|
public class TraktList |
|
{ |
|
public int Id { get; set; } |
|
public int TraktId { get; set; } |
|
public string User { get; set; } |
|
public string List { get; set; } |
|
public string Name { get; set; } |
|
public string Description { get; set; } |
|
public int ItemCount { get; set; } |
|
public bool AutoRefresh { get; set; } |
|
public DateTime? LastUpdate { get; set; } |
|
public DateTime? LastMatch { get; set; } |
|
public List<TraktListItem> Items { get; set; } |
|
}
|
|
|