1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -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
@@ -7,21 +7,21 @@ namespace NzbDrone.Core.Download
[DebuggerDisplay("{DownloadClient}:{Title}")]
public class DownloadClientItem
{
public String DownloadClient { get; set; }
public String DownloadId { get; set; }
public String Category { get; set; }
public String Title { get; set; }
public string DownloadClient { get; set; }
public string DownloadId { get; set; }
public string Category { get; set; }
public string Title { get; set; }
public Int64 TotalSize { get; set; }
public Int64 RemainingSize { get; set; }
public long TotalSize { get; set; }
public long RemainingSize { get; set; }
public TimeSpan? RemainingTime { get; set; }
public OsPath OutputPath { get; set; }
public String Message { get; set; }
public string Message { get; set; }
public DownloadItemStatus Status { get; set; }
public Boolean IsEncrypted { get; set; }
public Boolean IsReadOnly { get; set; }
public bool IsEncrypted { get; set; }
public bool IsReadOnly { get; set; }
public bool Removed { get; set; }
}