mirror of
https://github.com/Readarr/Readarr
synced 2025-12-19 14:56:04 +01: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; }
|
|
}
|
|
}
|