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
@@ -27,25 +27,25 @@ namespace NzbDrone.Core.Notifications.Email
}
[FieldDefinition(0, Label = "Server", HelpText = "Hostname or IP of Email server")]
public String Server { get; set; }
public string Server { get; set; }
[FieldDefinition(1, Label = "Port")]
public Int32 Port { get; set; }
public int Port { get; set; }
[FieldDefinition(2, Label = "SSL", Type = FieldType.Checkbox)]
public Boolean Ssl { get; set; }
public bool Ssl { get; set; }
[FieldDefinition(3, Label = "Username")]
public String Username { get; set; }
public string Username { get; set; }
[FieldDefinition(4, Label = "Password", Type = FieldType.Password)]
public String Password { get; set; }
public string Password { get; set; }
[FieldDefinition(5, Label = "From Address")]
public String From { get; set; }
public string From { get; set; }
[FieldDefinition(6, Label = "Recipient Address")]
public String To { get; set; }
public string To { get; set; }
public NzbDroneValidationResult Validate()
{