Minor refactoring in Cardigann definition

This commit is contained in:
Bogdan
2023-06-19 04:08:01 +03:00
parent 427802a50e
commit f0c5d8ceea
5 changed files with 30 additions and 30 deletions
@@ -0,0 +1,26 @@
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; }
}
}