mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
27 lines
853 B
C#
27 lines
853 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Indexers.Definitions.Cardigann
|
|
{
|
|
public class CardigannMetaDefinition
|
|
{
|
|
public CardigannMetaDefinition()
|
|
{
|
|
Legacylinks = new List<string>();
|
|
}
|
|
|
|
public string Id { get; set; }
|
|
public string File { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string Type { get; set; }
|
|
public string Language { get; set; }
|
|
public string Encoding { get; set; }
|
|
public List<string> Links { get; set; }
|
|
public List<string> Legacylinks { get; set; }
|
|
public List<SettingsField> Settings { get; set; }
|
|
public LoginBlock Login { get; set; }
|
|
public CapabilitiesBlock Caps { get; set; }
|
|
public string Sha { get; set; }
|
|
}
|
|
}
|