mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
10 lines
204 B
C#
10 lines
204 B
C#
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class RssEnclosure
|
|
{
|
|
public string Url { get; set; }
|
|
public string Type { get; set; }
|
|
public long Length { get; set; }
|
|
}
|
|
}
|