Files
Prowlarr-Prowlarr/NzbDrone.Core/Model/UpdatePackage.cs
2011-10-20 22:04:26 -07:00

15 lines
297 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Model
{
public class UpdatePackage
{
public string Url { get; set; }
public string FileName { get; set; }
public Version Version { get; set; }
}
}