mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
13 lines
244 B
C#
13 lines
244 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace NzbDrone.Core.Model
|
|
{
|
|
public class UpdatePackage
|
|
{
|
|
public string Url { get; set; }
|
|
public string FileName { get; set; }
|
|
public Version Version { get; set; }
|
|
}
|
|
}
|