Update logs are now in the UI

This commit is contained in:
kay.one 2011-11-21 22:55:09 -08:00
parent 54e5874770
commit 3520b56bb6
11 changed files with 158 additions and 25 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using NzbDrone.Core.Model;
namespace NzbDrone.Web.Models
{
public class UpdateModel
{
public UpdatePackage UpdatePackage { get; set; }
public Dictionary<DateTime, string> LogFiles { get; set; }
public String LogFolder { get; set; }
}
}