mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
Changelog is now available in the UI
New: Added changelog to UI
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user