mirror of
https://github.com/Radarr/Radarr
synced 2026-04-27 03:44:35 +02:00
10 lines
261 B
C#
10 lines
261 B
C#
namespace NzbDrone.Core.Notifications.Xbmc.Model
|
|
{
|
|
public class TvShow
|
|
{
|
|
public int TvShowId { get; set; }
|
|
public string Label { get; set; }
|
|
public int ImdbNumber { get; set; }
|
|
public string File { get; set; }
|
|
}
|
|
}
|