diff --git a/NEW/src/JdeScoping.DataSync/Options/DataSourceConfig.cs b/NEW/src/JdeScoping.DataSync/Options/DataSourceConfig.cs index 973655d..9eb7a20 100644 --- a/NEW/src/JdeScoping.DataSync/Options/DataSourceConfig.cs +++ b/NEW/src/JdeScoping.DataSync/Options/DataSourceConfig.cs @@ -20,20 +20,6 @@ public class DataSourceConfig /// public string SourceData { get; set; } = string.Empty; - /// - /// Name of IDataFetcher implementation type (without generic suffix). - /// Deprecated: Will be removed in a future release. - /// - [Obsolete("FetcherTypeName is deprecated and will be removed. Use pipelines.json configuration instead.")] - public string? FetcherTypeName { get; set; } - - /// - /// Optional IPostProcessor implementation type name. - /// Deprecated: Will be removed in a future release. - /// - [Obsolete("PostProcessorTypeName is deprecated and will be removed. Use pipelines.json postScripts instead.")] - public string? PostProcessorTypeName { get; set; } - /// /// Whether this data source is enabled for sync. /// @@ -69,18 +55,4 @@ public class ScheduleConfig /// Interval in minutes between syncs. /// public int IntervalMinutes { get; set; } - - /// - /// Whether to truncate the table before syncing (mass updates only). - /// Deprecated: Will be removed in a future release. - /// - [Obsolete("PrepurgeData is deprecated and will be removed. Use pipelines.json syncModes.prePurge instead.")] - public bool PrepurgeData { get; set; } = false; - - /// - /// Whether to rebuild indexes after syncing (mass updates only). - /// Deprecated: Will be removed in a future release. - /// - [Obsolete("ReIndexData is deprecated and will be removed. Use pipelines.json syncModes.reIndex instead.")] - public bool ReIndexData { get; set; } = false; }