mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
10 lines
229 B
C#
10 lines
229 B
C#
namespace Readarr.Api.V1.Author
|
|
{
|
|
public class AlternateTitleResource
|
|
{
|
|
public string Title { get; set; }
|
|
public int? SeasonNumber { get; set; }
|
|
public int? SceneSeasonNumber { get; set; }
|
|
}
|
|
}
|