mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
de556764bd
New: Added changelog to UI
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>();
|
|
}
|
|
}
|
|
}
|