1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Clean up Trakt a little (#735)

This commit is contained in:
Devin Buhl
2017-02-13 00:38:19 -05:00
committed by GitHub
parent 758228e159
commit a3e681078f
4 changed files with 12 additions and 12 deletions
@@ -26,13 +26,13 @@ namespace NzbDrone.Core.NetImport.Trakt
[FieldDefinition(0, Label = "Trakt API URL", HelpText = "Link to to Trakt API URL, do not change unless you know what you are doing.")]
public new string Link { get; set; }
[FieldDefinition(1, Label = "Trakt List Type", Type = FieldType.Select, SelectOptions = typeof(TraktListType), HelpText = "Trakt list type, custom or watchlist")]
[FieldDefinition(1, Label = "List Type", Type = FieldType.Select, SelectOptions = typeof(TraktListType), HelpText = "Trakt list type, custom or watchlist")]
public int ListType { get; set; }
[FieldDefinition(2, Label = "Trakt Username", HelpText = "Required for User List")]
[FieldDefinition(2, Label = "Username", HelpText = "Required for User List")]
public string Username { get; set; }
[FieldDefinition(3, Label = "Trakt List Name", HelpText = "Required for Custom List")]
[FieldDefinition(3, Label = "List Name", HelpText = "Required for Custom List")]
public string Listname { get; set; }
}