1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Update/UpdatePackage.cs
Mark McDowall de556764bd Changelog is now available in the UI
New: Added changelog to UI
2013-09-28 11:48:30 -07:00

20 lines
413 B
C#

using System;
namespace NzbDrone.Core.Update
{
public class UpdatePackage
{
public string Id { get; set; }
public Version Version { get; set; }
public String Branch { get; set; }
public DateTime ReleaseDate { get; set; }
public String FileName { get; set; }
public String Url { get; set; }
public UpdateChanges Changes { get; set; }
}
}