1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00

Private constructor for TrackedDownloadStatusMessage

This commit is contained in:
Mark McDowall 2014-12-21 08:46:24 -08:00
parent 1a34cd8e6a
commit 400a47cd19

View File

@ -20,5 +20,10 @@ public TrackedDownloadStatusMessage(String title, String message)
Title = title;
Messages = new List<String>{ message };
}
//Constructor for use when deserializing JSON
private TrackedDownloadStatusMessage()
{
}
}
}