mirror of
https://github.com/Readarr/Readarr
synced 2025-12-31 12:42:25 +01:00
10 lines
209 B
C#
10 lines
209 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public class UpdatePackageAvailable
|
|
{
|
|
public Boolean Available { get; set; }
|
|
public UpdatePackage UpdatePackage { get; set; }
|
|
}
|
|
}
|