1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 08:07:20 +02:00
Radarr/NzbDrone.Web/Models/PostUpgradeModel.cs
Mark McDowall 6e86db66c8 New: After an update the update page will redirect to a success or failure page, depending on the result.
Fix: Notifications will attempt to reconnect to NzbDrone after it is shutdown.
2012-02-29 16:44:44 -08:00

15 lines
383 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class PostUpgradeModel
{
public Version CurrentVersion { get; set; }
public Version ExpectedVersion { get; set; }
public bool Success { get; set; }
public KeyValuePair<DateTime, string> LogFile { get; set; }
}
}