Remove Status from IndexerDefinition

This commit is contained in:
Bogdan
2024-01-25 16:56:05 +02:00
parent 3d52096eb4
commit 2e3a95f389

View File

@@ -29,8 +29,6 @@ namespace NzbDrone.Core.Indexers
public int AppProfileId { get; set; }
public LazyLoaded<AppSyncProfile> AppProfile { get; set; }
public IndexerStatus Status { get; set; }
public List<SettingsField> ExtraFields { get; set; } = new List<SettingsField>();
public List<SettingsField> ExtraFields { get; set; } = new ();
}
}