You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Update/UpdateChanges.cs

17 lines
340 B

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