Changelog is now available in the UI

New: Added changelog to UI
This commit is contained in:
Mark McDowall
2013-09-28 11:48:30 -07:00
parent 90001b1a3b
commit de556764bd
22 changed files with 285 additions and 52 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
namespace NzbDrone.Core.Update
{
public class UpdateChanges
{
public List<String> New { get; set; }
public List<String> Fixed { get; set; }
public UpdateChanges()
{
New = new List<String>();
Fixed = new List<String>();
}
}
}