Lidarr/src/NzbDrone.Core/Update/UpdatePackageAvailable.cs

9 lines
191 B
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
namespace NzbDrone.Core.Update
2013-08-24 02:21:12 +00:00
{
public class UpdatePackageAvailable
{
public bool Available { get; set; }
2013-08-24 02:21:12 +00:00
public UpdatePackage UpdatePackage { get; set; }
}
}