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

11 lines
206 B
C#
Raw Normal View History

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