mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-21 07:14:04 +00:00
18 lines
354 B
C#
18 lines
354 B
C#
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>();
|
|
}
|
|
}
|
|
}
|