mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
11 lines
192 B
C#
11 lines
192 B
C#
using System;
|
|
|
|
namespace NzbDrone.Api.Series
|
|
{
|
|
public class AlternateTitleResource
|
|
{
|
|
public string Title { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
}
|
|
}
|