Radarr/src/NzbDrone.Core/Update/UpdateChanges.cs

17 lines
340 B
C#

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>();
}
}
}