12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Ips.Sps.Scheduling.Entities;
- namespace Ips.Sps.Scheduling.SigAds
- {
- public class AdDbHistoryWorker : AdWorkerBase
- {
- public AdDbHistoryWorker(RunTsk context) : base(context)
- {
- }
- public override void Execute(CancellationToken token)
- {
- }
- }
- }
|