1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-07 15:20:58 +02:00
Sonarr/NzbDrone.Core/Update/UpdatePackage.cs

12 lines
226 B
C#
Raw Normal View History

using System;
2013-04-13 16:57:10 -07:00
namespace NzbDrone.Core.Update
{
public class UpdatePackage
{
public string Url { get; set; }
public string FileName { get; set; }
public Version Version { get; set; }
}
}