mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-29 11:16:19 +00:00
11 lines
226 B
C#
11 lines
226 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public class UpdatePackage
|
|
{
|
|
public string Url { get; set; }
|
|
public string FileName { get; set; }
|
|
public Version Version { get; set; }
|
|
}
|
|
}
|