mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-28 23:07:13 -04:00
11 lines
204 B
C#
11 lines
204 B
C#
using System;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Metadata
|
|
{
|
|
public class MetadataDefinition : ProviderDefinition
|
|
{
|
|
public Boolean Enable { get; set; }
|
|
}
|
|
}
|