1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

Replaced built-in valuetypes with language keywords.

This commit is contained in:
Taloth Saldono
2015-10-03 19:45:26 +02:00
parent d6a135857d
commit ccfa13e383
454 changed files with 2042 additions and 2042 deletions
@@ -34,16 +34,16 @@ namespace NzbDrone.Core.Indexers.BitMeTv
}
[FieldDefinition(0, Label = "Website URL")]
public String BaseUrl { get; set; }
public string BaseUrl { get; set; }
[FieldDefinition(1, Label = "UserId")]
public String UserId { get; set; }
public string UserId { get; set; }
[FieldDefinition(2, Label = "RSS Passkey")]
public String RssPasskey { get; set; }
public string RssPasskey { get; set; }
[FieldDefinition(3, Label = "Cookie", HelpText = "BitMeTv uses a login cookie needed to access the rss, you'll have to retrieve it via a browser.")]
public String Cookie { get; set; }
public string Cookie { get; set; }
public NzbDroneValidationResult Validate()
{