mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 10:37:41 +00:00
12 lines
244 B
C#
12 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; }
|
|
}
|
|
}
|