mirror of
https://github.com/Radarr/Radarr
synced 2025-01-19 06:00:27 +00:00
de556764bd
New: Added changelog to UI
17 lines
354 B
C#
17 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>();
|
|
}
|
|
}
|
|
}
|